xcode6如何增加launch screen

准备工作

除了为iphone6+准备launch image之外,还要为iphone4~5s准备两张launch image,分别是640* 960 和 640*1136

添加步骤

1.Targets->general->App icons and launch images->launch image source

添加一个 "LaunchImage"


2.进入 Images.xcassets ,在 "LaunchImage"中拖入两张图片

    2x(640*960,iphone4,4s) Retina 4(640*1136,iphone5,5s)

xcode6如何增加launch screen_第1张图片


3.在拖入一个launchimage(640*1136) 到 Images.xcassets, 这个图片的额名字必须命名为 "Default-568h@2x"

xcode6如何增加launch screen_第2张图片

4.在LaunchScreen.xib中添加好launchimage

5.run the app

原理

当设备是iphone4~5s的时候,launchscreen是调用的Image.xcassets中的LaunchImage的两张图,当设备是iphone6+时,调用的是LaunchScreen.xib


你可能感兴趣的:(ios开发,iPhone6,Xcode6,LaunchScreen)