2013-02-18 00:04:44 +10:00
|
|
|
// AppDelegate.h boilerplate
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@class ViewController;
|
|
|
|
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
2019-06-09 22:15:39 +08:00
|
|
|
@property (strong, nonatomic) UIScreen *screen;
|
2013-02-18 00:04:44 +10:00
|
|
|
|
|
|
|
@property (strong, nonatomic) ViewController *viewController;
|
|
|
|
|
|
|
|
@end
|