转自:http://www.j2megame.org/index.php/content/view/2659/165.html
Device/Screen |
File Name (PNG) |
Icon Size (pixels) |
iPhone and iPod |
Application Icon for iPhone (retina display) |
Icon@2x.png |
114 x 114 |
Application Icon icon for iPhone |
Icon.png |
57 x 57 |
Settings/Spotlight icon for iPhone (retina display) |
Icon-Small@2x.png |
58 x 58 |
Settings/Spotlight icon for iPhone |
Icon-Small.png |
29 x 29 |
Launch image Portrait (retina display) |
Default@2x.png |
640 x 960 |
Launch image Portrait |
Default.png |
320 x 480 |
iPad |
Application Icon for the new iPad (retina display) |
Icon-72@2x.png |
144 x 144 |
Application Icon for the iPad |
Icon-72.png |
72 x 72 |
Settings/Spotlight icon for iPad |
Icon-Small-50@2x.png |
100 x 100 |
Settings/Spotlight icon for iPad |
Icon-Small-50.png |
50 x 50 |
Launch image Portrait (retina display) |
Default-Portrait@2x.png |
1536 x 2008 |
Launch image Portrait |
Default-Portrait.png |
768 x 1004 |
Launch image Landscape (retina display) |
Default-Landscape@2x.png |
2048 x 1496 |
Launch image Landscape |
Default-Landscape.png |
1024 x 748 |
iTunes App Store |
App icon for the App Store (retina display) |
iTunesArtwork@2x.png |
1024 x 1024 |
App icon for the App Store |
iTunesArtwork.png |
512 x 512 |
|
分享到:
相关推荐
在iOS开发中,获取AppIcon和LaunchImage的名称有时是必要的,例如用于特定场景下的定制化展示或模拟通知。本文将详细介绍如何在iOS应用中获取这两个元素的名称。 首先,AppIcon是应用在用户设备上显示的图标,而...
在iOS上,APPIcon需要根据不同设备和操作系统版本提供不同尺寸的版本。你可以使用Asset Catalog来管理和生成不同大小的图标,确保在各种环境下都能展示清晰。APPIcon的设计应该简洁明了,易于识别,同时也要吸引用户...
4. **图标与启动画面**:每个iOS应用都需要定制的App Icon和Launch Screen。App Icon代表应用的视觉标识,Launch Screen则是用户打开应用时首先看到的页面,可以是静态图片或简单的界面布局。 5. **本地化**:iOS...
在苹果的MAC操作系统中,开发或管理iOS应用时,创建并适配各种尺寸的App图标是一项繁琐的任务。然而,通过使用Shell脚本和内置的`sips`命令,我们可以自动化这个过程,大大提升效率。本文将详细讲解如何编写一个...
let path = UIBezierPath(roundedRect: CGRect(x: 0, y: 0, width: iconSize, height: iconSize), cornerRadius: iconSize / 2) maskLayer.path = path.cgPath maskLayer.fillRule = .evenOdd // 这个属性可以确保...
iconLabel.font = [UIFont fontWithName:@"YourIconFontName" size:24]; iconLabel.text = @"\ue600"; // 这里的"\ue600"是图标在字体文件中的Unicode值 ``` 4. **适应不同平台**:IconFont技术同样适用于多种设备...