12 lines
228 B
Objective-C
12 lines
228 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@class ViewController;
|
|
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
@property (strong, nonatomic) ViewController *viewController;
|
|
|
|
@end
|