mirror of
https://github.com/blanking003/cx-cocos.git
synced 2025-01-14 23:11:30 +00:00
21 lines
505 B
Objective-C
21 lines
505 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
#import "ViewController.h"
|
|
|
|
@interface AppController : NSObject <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) ViewController* rootViewController; //cocos root view
|
|
@property (strong, nonatomic) UINavigationController* appViewController; //app root view
|
|
|
|
@property (nonatomic) bool isFullScreen;
|
|
|
|
+ (AppController *)ins;
|
|
|
|
- (void) pushViewController:(UIViewController*)vc animated:(BOOL)animated;
|
|
- (void) addView:(UIView*)view;
|
|
- (void) removeLaunchImage;
|
|
|
|
@end
|
|
|
|
|