icon 大小集合

Drag the following files into the project window iPhone folder (if designing for iPhone):

Icon.png (57x57px)

Icon@2x.png(114x114px)

Icon-Small.png (29x29px)

Icon-Small@2x.png (58x58px)

Drag the following files into the project window iPad folder (if designing for iPad):

Icon-72.png (72x72px)

Icon-Small-50.png (50x50px)

If your icon already has the glossy and beveled effects

Open MyApName-Info.plist.  Right click in the blank area and add a row with the key name ’Icon Already Includes Gloss Effects’ (was ‘UIPrerenderedIcon’) with a setting of ‘YES’.

The following is no longer requried

In MyApName-Info.plist:

IconFile = [blank]

Click the ‘+’ button and add ‘IconFiles’.  Then add the icon files as follows:

Item 0 – Icon.png

Item 1 – Icon@2x.png

Item 2 -Icon-72.png

Item 3 -Icon-Small-50.png

Item 4 -Icon-Small.png

Item 5 -Icon-Small@2x.png

Default Image

The default image is the image that loads while the application starts up.  Ideally this should be an image that mimics the real application start-up page so that the user experience is just of the app starting,although it can be treated as an application start-up splash screen if preferred.

Default.png (320x480px)

Default@2x.png (640x960px)

Default-Portrait~ipad.png (768x1004px) (and optionally Default-PortraitUpsideDown.png)

Default-Landscape~ipad.png (1024x748px) (or Default-LandscapeLeft.png and Default-LandscapeRight.png)

Corner Radius

Corner radius for 512×512 = 80
Corner radius for 114×114 = 18
Corner radius for 72×72 = 11
Corner radius for the 57×57 = 9

Adding the iTunes Image

Create the following file:

iTunesArtwork (512x512px) (no.png file extension)

This file is submitted with the applicaiton,but is not part of the application (it is not stored in the application).  This image will be used by iTunes and re-sampled as needed.

Size of Screen Elements

Top iPhone status bar 20px

iPhone nav bar 44px

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...