enable native resolution for apps on iPhone 6 and 6 Plus

1. 工程中配置launchImage;
The iPhone 6 (Retina HD 4.7) requires a portrait launch image of 750 x 1334.

The iPhone 6 Plus (Retina HD 5.5) requires both portrait and landscape images sized as 1242 x 2208 and 2208 x 1242 respectively.

enable native resolution for apps on iPhone 6 and 6 Plus_第1张图片
Paste_Image.png

or 2. info.plist中源码添加

UILaunchImages
 

 UILaunchImageMinimumOSVersion 8.0
 UILaunchImageName Default-667h 
UILaunchImageOrientation Portrait 
UILaunchImageSize {375, 667}
  
 
UILaunchImageMinimumOSVersion 8.0 
UILaunchImageName Default-736h 
UILaunchImageOrientation Portrait
 UILaunchImageSize {414, 736} 


你可能感兴趣的:(enable native resolution for apps on iPhone 6 and 6 Plus)