2021-07-01 10:40:18 +02:00

12 lines
210 B
Objective-C

#import <UIKit/UIKit.h>
@class RootViewController;
@interface AppController : NSObject <UIApplicationDelegate> {
UIWindow *window;
}
@property(nonatomic, readonly) RootViewController *viewController;
@end