第一步
刪除main.storyboard

截屏2023-04-18 16.14.05.png
第二步
選擇move to trash

截屏2023-04-18 16.14.11.png
第三步
修改launch screen file為Launscreen.storyboard

截屏2023-04-18 16.14.27.png
第四步
刪除這一行

截屏2023-04-18 16.26.50.png
第五步

刪除application scene

刪除這部分代碼
同時刪除scene文件
最后一步
//DSNavBaseController自己定義的nav
//window在APPdelegate定義
//DSHomeVC自己定義自己的首頁控制器
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
self.window = [[UIWindow alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height)];
DSNavBaseController *nav = [[DSNavBaseController alloc] initWithRootViewController:[[DSHomeVC alloc]init]];
nav.view.backgroundColor = [UIColor clearColor];
self.window.backgroundColor = [UIColor whiteColor];
self.window.rootViewController = nav;
[self.window makeKeyAndVisible];
return YES;
}