iOS项目相关整理

1、手动忽略警告clang

项目中有时候因为适配低版本,会出现一些烦人的警告,这时候我们需要手动忽略掉的话就需要使用clang了。
clang命令说明:
格式:

 #pragma clang diagnostic push
 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
 
    这里是要忽略警告的代码或者包裹整个文件

 #pragma clang diagnostic pop

2、AppIcon和LaunchImage尺寸

iOS项目相关整理_第1张图片
AppIcon尺寸说明.jpg

上面都是给有耐心的人看的,美工一般看到会比较小烦(可能我们的美工在更年期,小声bb~),AppIcon项目配置里也说得比较清楚,比较全:
so我都是这么给她们说明,哈哈


iOS项目相关整理_第2张图片
AppIcon尺寸配置说明.jpg
iOS项目相关整理_第3张图片
LaunchImage尺寸说明.jpg

同样,给美工


iOS项目相关整理_第4张图片
LaunchImage尺寸配置说明.jpg

3、发布心得

以下是我在发布APP的时候遇到的被拒原因:

Guideline 2.3.3 - Performance - Accurate Metadata


We noticed that your screenshots do not sufficiently reflect your app in use.

Specifically, your 6.5-inch iPhone screenshots do not display the app in the correct device frame.

1、关于AppStore中APP上传图片尺寸,6.5inch的图片,截图或者设计图必须带有刘海,iPhone X做底图。

Guideline 2.3.7 - Performance - Accurate Metadata


Your app name or subtitle to be displayed on the App Store includes keywords or descriptors, which are not appropriate for use in these metadata items.

Specifically, the following words in your app name or subtitle are considered keywords or descriptors:

天然翡翠源头货源实体店批发认证商家,质量更保证!

2、关于AppStore中APP的名称和副标题,不能包含关键字里的描述,这里支出了我的副标题关键字中有重复,其中翡翠是重复的。。。描述里最好也不要有。

We were required to install the WeChat app before we could log in via WeChat. Users should be able to log in with WeChat and access their accounts without having to install any additional apps.

3、意思是APP不能要求用户额外下载其他应用,不能有第三方登录或者提示更新的按钮,这个可以通过服务端来控制(推荐),或者手动判断微信、QQ等是否安装。

We noticed that several screens of your app were crowded or laid out in a way that made it difficult to use your app.

4、这个问题是页面错乱,一般是没有做iPad适配,但是苹果使用iPad测试导致,如果确保iPhone没问题,而且只支持iPhone则直接回复要求使用iPhone测试,否则就做适配吧。

Please revise the relevant purpose string in your app’s Info.plist file to specify why the app is requesting access to the user's camera and photos. You can modify your app's Info.plist file using the property list editor in Xcode.

5、请说明使用相机和相册的目的,不要只写访问相册访问相机这种简单的,要写需要您的同意访问相册,以便完善用户头像和商品图片信息等明确目的。

待更新

你可能感兴趣的:(iOS项目相关整理)