首页 热点资讯 义务教育 高等教育 出国留学 考研考公
您的当前位置:首页正文

基础框架之一:新建项目处理

2024-12-20 来源:化拓教育网

前言:其实不做下面的处理,项目也是可以成功运行,只不过我有点项目洁癖,不需要的还是删掉比较好。

第一步:
删除
Main.storyboard
LaunchScreen
ViewController

右键 delete -> Move to Trash

第二步:
选择工程 -> targets -> general - >

  1. Deployment info 清空main interface内容
  2. app icons and launche images ->launch images source 选择新建的launch image文件 (这一步不能漏 ,不然即使运行成功,也是上下黑屏)。

第三步:
进入info.plist文件 删除Launch screen interface file base name 和 Main storyboard file base name选项

第四步:
新建一个页面 honePageViewController,在appdelegate.m文件中
定义window的根视图

self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
    self.window.backgroundColor = [UIColor whiteColor];
    LHQHomePageController *homeVc = [[LHQHomePageController alloc]init];
    self.window.rootViewController = homeVc;
    [self.window makeKeyAndVisible];

然后 clean 一下 在运行。

end。

写文只为记事。

显示全文