AppDelegate.m 731 字节
//
//  AppDelegate.m
//  DreamSleep
//
//  Created by peter on 2022/3/29.
//

#import "AppDelegate.h"
#import "PrivacyView.h"
#import "PrivacyViewController.h"
#import "DSTabBarController.h"

@interface AppDelegate ()
@end

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    self.window = [UIWindow.alloc initWithFrame:UIScreen.mainScreen.bounds];
    self.window.backgroundColor = DSWhite;
    [self.window makeKeyAndVisible];
    
    UINavigationController *navi = [[UINavigationController alloc] initWithRootViewController:[[PrivacyViewController alloc] init]];
    self.window.rootViewController = navi;
    
    return YES;
}

@end