xcode7设置程序启动图片

xcode7的icon和之前的没什么区,只是lauchimage好像和之前不大同。icon在工程里单击Assets.xcassets 并把需要的icon文件拖到appIcon即可。(Assets.xcassets只能放 .png的图片,.jpg的放在Supporting Files里)

设置程序启动图片:

1首先在Assets.xcassets里右键选择 App Icons&Launch Images ->new iOS launch image然后在新建的launch image加入你的图片


xcode7设置程序启动图片_第1张图片

2.点击项目工程->general 在app icons and launch images 下有个launch images source 点击use asset catalog在弹出的对话框中点migrate按钮

xcode7设置程序启动图片_第2张图片

3.把launch images source选项  变成brand assets 点击他选择launchimage,然后把下面的 launch screen file字段的清空保存即可

xcode7设置程序启动图片_第3张图片

4.记得要把Assets.xcassets里brand assets删掉,不然有警告


xcode7设置程序启动图片_第4张图片

5.如果碰到把图片素材拖到LaunchImage后有空缺的框,可能会导致启动界面仍然没有图片。

xcode7设置程序启动图片_第5张图片

解决方法:

1.右键点击一张图片->Show in Finder->打开.json的那个文件

xcode7设置程序启动图片_第6张图片

2.找到有图片名称的那行代码,复制下来

xcode7设置程序启动图片_第7张图片

3.在其他没有该代码的代码中,黏贴到iOS型号代码行的下一行,保存,再次打开启动界面就会有设置的图片显示。


xcode7设置程序启动图片_第8张图片

PS:如果要设置程序启动时不显示状态栏

1.在info.plist文件中增加一个选项,选择为NO

xcode7设置程序启动图片_第9张图片

2.点击项目工程->general 在Deployment Info里再勾选一个选项


xcode7设置程序启动图片_第10张图片

3.在AppDelegate.m里添加一句代码,设置启动完毕后有状态栏


xcode7设置程序启动图片_第11张图片

你可能感兴趣的:(xcode7设置程序启动图片)