27 lines
655 B
Mathematica
27 lines
655 B
Mathematica
![]() |
//
|
||
|
// AppDelegate.m
|
||
|
// xplan-ios
|
||
|
//
|
||
|
// Created by zu on 2021/8/31.
|
||
|
//
|
||
|
|
||
|
#import "AppDelegate.h"
|
||
|
#import "TabbarViewController.h"
|
||
|
|
||
|
@interface AppDelegate ()
|
||
|
|
||
|
@end
|
||
|
|
||
|
@implementation AppDelegate
|
||
|
|
||
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
||
|
TabbarViewController *vc = [[TabbarViewController alloc] init];
|
||
|
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
|
||
|
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
|
||
|
self.window.rootViewController = nav;
|
||
|
[self.window makeKeyAndVisible];
|
||
|
return YES;
|
||
|
}
|
||
|
|
||
|
@end
|