App Store构建版本无效

解决途径:当我们构建的版本无效时,与苹果帐号绑定的手机号和邮箱会收到相应的推送消息,邮箱中会有详细信息,可以根据信息,找到问题原因,并解决。

本人开发过程中遇到的情况有:

一: 相机,通讯录,麦克风等权限设置中问题

Privacy - Camera Usage Description

Privacy - Microphone Usage Description

Privacy - Photo Library Usage Description

等后的描述信息value值不能为空


二:iOS开发遇到的坑之七--上传app Stroe被拒绝:The app references non-public symbols in : _UICreateCGImageFromIOSurface


上传App Store的时候,apple给我发的邮件原文:


Dear developer,


We have discovered one or more issues with your recent delivery for "***". To process your delivery, the following issues must be corrected:


Non-public API usage:


The app references non-public symbols in ***: _UICreateCGImageFromIOSurface

If method names in your source code match the private Apple APIs listed above, altering your method names will help prevent this app from being flagged in future submissions. In addition, note that one or more of the above APIs may be located in a static library that was included with your app. If so, they must be removed.


If you think this message was sent in error and that you have only used Apple-published APIs in accordance with the guidelines, send the app's nine-digit Apple ID, along with detailed information about why you believe the above APIs were incorrectly flagged, [email protected]. For further information, visit the Technical Support Information page.


Once these issues have been corrected, you can then redeliver the corrected binary.


Regards,


The App Store team


我反反复复的在工程里面寻找_UICreateCGImageFromIOSurface这个相关的方法,我实在是不知道我调用了这个私有的API

所以上网求助,最终还是在Stackoverflow

解决方案是把reveal.framework 相关的去除掉ok了。

你可能感兴趣的:(iOS,App,Store,App,Store构建版本无效)