博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
XCODE 6.1 创建新白空应用
阅读量:6267 次
发布时间:2019-06-22

本文共 670 字,大约阅读时间需要 2 分钟。

hot3.png

1.新建一个single view application2.打开 Info.plist,删除里面的  Launch screen interface file....以及 Main storyboard file base name...3.删除Main.storyboard以及LaunchScreen.xib4.在AppDelegate.m修改如下(其中MainViewController是自己新建的 viewController)- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    // Override point for customization after application launch.    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds] ];    self.window.rootViewController = [[MainViewController alloc]init];    [self.window makeKeyAndVisible];        return YES;}

创建pch预处理文件

关联预处理文件

转载于:https://my.oschina.net/bufenye/blog/360448

你可能感兴趣的文章
Spring集成RabbitMQ-使用RabbitMQ更方便
查看>>
Nginx 设置域名转向配置
查看>>
.net core 实现简单爬虫—抓取博客园的博文列表
查看>>
FP-Tree算法的实现
查看>>
Android 用Handler和Message实现计时效果及其中一些疑问
查看>>
Dos命令删除添加新服务
查看>>
C#.NET常见问题(FAQ)-索引器indexer有什么用
查看>>
hadoop YARN配置参数剖析—MapReduce相关参数
查看>>
Java 正则表达式详细使用
查看>>
【ADO.NET】SqlBulkCopy批量添加DataTable
查看>>
SqlServer--bat批处理执行sql语句1-osql
查看>>
Linux系列教程(十八)——Linux文件系统管理之文件系统常用命令
查看>>
laravel安装初体验
查看>>
用yum查询想安装的软件
查看>>
TIJ -- 吐司BlockingQueue
查看>>
数据库分页查询
查看>>
[编程] C语言枚举类型(Enum)
查看>>
[Javascript] Compose multiple functions for new behavior in JavaScript
查看>>
ASP.NET MVC性能优化(实际项目中)
查看>>
ES6里关于类的拓展(一)
查看>>