1、应用场景
新软件安装在第一次打开时都会有该软件或版本的介绍,在iOS中最经典的做法是搭建一个ScrollView分页展示
但考虑到iPhone4系统与iPhone5系统,屏幕适配如何更为科学简单是一门学问,以下提供一个参考
2、图片命名
一般是三图片,Retina屏之前屏幕一套、iPhone4(4S)一套、iPhone5(5C/5S)一套
1
2
3
| xxx_序号.png // iPhone3GS及以前,可忽略
xxx_序号@2x.png // iPhone4及iPhone4S
xxx_序号-568h@2x.png // iPhone5及iPhone5C、iPhone5S |
xxx_序号.png // iPhone3GS及以前,可忽略
xxx_序号@2x.png // iPhone4及iPhone4S
xxx_序号-568h@2x.png // iPhone5及iPhone5C、iPhone5S
如:
1
2
3
4
5
6
7
8
9
| new_feature_1.png
new_feature_1@2x.png
new_feature_1-568h@2x.png
new_feature_2.png
new_feature_2@2x.png
new_feature_2-568h@2x.png
new_feature_3.png
new_feature_3@2x.png
new_feature_3-568h@2x.png |
new_feature_1.png
new_feature_1@2x.png
new_feature_1-568h@2x.png
new_feature_2.png
new_feature_2@2x.png
new_feature_2-568h@2x.png
new_feature_3.png
new_feature_3@2x.png
new_feature_3-568h@2x.png
3、文件名自动识别
3.1、增加两个Category[……]
继续阅读