-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAWBaseEnrollmentViewController.h
More file actions
50 lines (46 loc) · 1.66 KB
/
AWBaseEnrollmentViewController.h
File metadata and controls
50 lines (46 loc) · 1.66 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
* This header is generated by class-dump-z 0.2-0.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import <UIKit/UIViewController.h>
#import "AirWatch-Structs.h"
@class UIView, UILabel, UIScrollView, UIImageView;
@interface AWBaseEnrollmentViewController : UIViewController {
UIScrollView* _contentView;
UIImageView* _headerImageView;
UIView* _headerView;
UIView* _bottomView;
unsigned _backgroundColor;
UILabel* _headerLabel;
UILabel* _subtitleLabel;
UIImageView* _logoView;
}
@property(retain, nonatomic) UIImageView* logoView;
@property(retain, nonatomic) UILabel* subtitleLabel;
@property(retain, nonatomic) UILabel* headerLabel;
@property(assign, nonatomic) unsigned backgroundColor;
@property(retain, nonatomic) UIView* bottomView;
@property(retain, nonatomic) UIView* headerView;
@property(retain, nonatomic) UIImageView* headerImageView;
@property(retain, nonatomic) UIScrollView* contentView;
-(void)addHeaderSubtitleLabel:(id)label position:(CGRect)position;
-(void)addHeaderLabel:(id)label position:(CGRect)position;
-(void)addBottomView;
-(void)addHeaderView;
-(void)addLogoView;
-(void)addHeaderTitle:(id)title withSubtitle:(id)subtitle;
-(id)headerImageForOrientation:(int)orientation;
-(id)currentColor;
-(id)tintImage:(id)image withColor:(id)color;
-(BOOL)isWideScreen;
-(BOOL)isIPad;
-(void)arrangeHeaderViewsForInterface:(int)interface;
-(void)calculateContentSizeForInterface:(int)interface;
-(void)willRotateToInterfaceOrientation:(int)interfaceOrientation duration:(double)duration;
-(void)viewWillAppear:(BOOL)view;
-(void)viewDidLoad;
-(void)dealloc;
-(id)initWithNibName:(id)nibName bundle:(id)bundle;
@end