iOS 问题整理

iOS Domain=NSURLErrorDomain Code=-1005 "网络连接已中断。

参考链接:https://stackoverflow.com/questions/25372318/error-domain-nsurlerrordomain-code-1005-the-network-connection-was-lost/25996971#25996971

多工程打发布包问题(ERROR ITMS-90680:“Invalid directory”. The bundle … is not contained in a correctly named directory. It should be under “Frameworks”)

iOS 问题整理_第1张图片

依赖包、扩展添加脚本
iOS 问题整理_第2张图片

参考链接:https://stackoverflow.com/questions/27156816/validation-error-the-bundle-contains-disallowed-file-frameworks

上传iTunes成功构建版本展示不出来

  Xcode上传正式包至iTunes时,发现在iTunes的构建版本一直没有,这有可能是App中用到某些权限,但是在info.plist没有添加导致

基本权限列表(转载:https://blog.csdn.net/z1067832450_/article/details/80299497)

    
NSPhotoLibraryUsageDescription
App需要您的同意,才能访问相册   
   
NSCameraUsageDescription   
App需要您的同意,才能访问相机   
   
NSMicrophoneUsageDescription   
App需要您的同意,才能访问麦克风   
   
NSLocationUsageDescription   
App需要您的同意,才能访问位置   
   
NSLocationWhenInUseUsageDescription   
App需要您的同意,才能在使用期间访问位置   
   
NSLocationAlwaysUsageDescription   
App需要您的同意,才能始终访问位置   
   
NSCalendarsUsageDescription   
App需要您的同意,才能访问日历   
   
NSRemindersUsageDescription   
App需要您的同意,才能访问提醒事项   
   
NSMotionUsageDescription 
App需要您的同意,才能访问运动与健身   
   
NSHealthUpdateUsageDescription   
App需要您的同意,才能访问健康更新    
   
NSHealthShareUsageDescription   
App需要您的同意,才能访问健康分享   
   
NSBluetoothPeripheralUsageDescription   
App需要您的同意,才能访问蓝牙   
   
NSAppleMusicUsageDescription 
App需要您的同意,才能访问媒体资料库 

itunes构建版本一直显示处理中…

解决方案:
1.apple会发送邮件至开发者邮箱,如有问题请按照邮件处理重新提交即可
2.如果没啥问题耐性等待苹果那边邮件通知处理进程,(笔者出现过第二天才看到处理完成的情况)

你可能感兴趣的:(iOS)