-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainViewController.h
29 lines (25 loc) · 1.1 KB
/
MainViewController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
// MainViewController.h
// Science 9
//
// Created by Blake Tsuzaki on 8/21/13.
// Copyright (c) 2013 Blake Tsuzaki. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "BadgeView.h"
#import "MBProgressHUD.h"
@interface MainViewController : UIViewController <UIScrollViewDelegate,MBProgressHUDDelegate>
@property (retain, nonatomic) IBOutlet UIImageView *backgroundImageView;
@property (retain, nonatomic) IBOutlet UIImageView *avatarImageView;
@property (retain, nonatomic) IBOutlet UIScrollView *backgroundScrollView;
@property (retain, nonatomic) IBOutlet UIScrollView *foregroundScrollView;
@property (retain, nonatomic) IBOutlet UIView *foregroundView;
- (IBAction)changeImageSize:(id)sender;
@property (retain, nonatomic) IBOutlet UIButton *expandButton;
- (IBAction)refreshMain:(id)sender;
@property (retain, nonatomic) IBOutlet UIButton *refreshButton;
@property (retain, nonatomic) IBOutlet BadgeView *badgeView;
@property (retain, nonatomic) IBOutlet UIView *headerView;
@property (retain, nonatomic) IBOutlet UILabel *nameLabel;
+ (void)verifyCurrentAppVersion;
@end