
iOS 报错分析
iOS报错分析
薄荷味玉姚
moving on !
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
The identity used to sign the executable is no longer valid. 解决方案
在真机模拟的时候经常会遇见 “The identity used to sign the executable is no longer valid.”的问题。 解决方案:1. 先确认自己的证书都是有效的。若无效 ->Edit编辑证书为Active状态 。 2. 按照下面步骤Xode -> Preferences -> 选择自己的开发者账号-> Accoun原创 2016-10-21 11:44:41 · 812 阅读 · 0 评论 -
The document “LaunchScreen.storyboard” requires Xcode 8.0 or later. 解决方法
The document “LaunchScreen.storyboard” requires Xcode 8.0 or later.解决方案原创 2016-10-10 17:50:34 · 2117 阅读 · 0 评论 -
The following URL schemes found in your app are not in the correct format 解决方案
今天打包时出现错误 @"The following URL schemes found in your app are not in the correct format " 经过查资料发现是支付URL Schemes回调名称不能以数字开头的问题 。修改URL Schemes(首位不能是数字), 然后重新打包上传即可。检查后怀疑是url scheme的回调名称4g有问题,于是改为f原创 2016-10-11 16:37:20 · 3628 阅读 · 0 评论 -
ApplicationLoader登录失败. Please sign in with an app-specific password.
打包时登录ApplicationLoader时 报错:Please sign in with an app-specific password. You can create one at appleid.apple.com出现这个错误的原因是 账号开启了双重认证;解决方法如下:原创 2016-11-18 16:32:18 · 34145 阅读 · 1 评论 -
unable to execute command: Segmentation fault: 11 解决方法
打包报错: 解决方法如下:Targets -> BuildSettings ->Enable Bitcode 设置为NO , 重新打包即可.当提交程序到App store上时,Xcode会将程序编译为一个中间表现形式(bitcode)。然后App store会再将这个botcode编译为可执行的64位或32位程序。Bitcode包的作用其原创 2016-12-12 16:31:19 · 3980 阅读 · 0 评论 -
"Your package contains a file with a name that contains leading or trailing whitespace"解决方法
打包报错:ERROR ITMS-90329: "Your package contains a file '光合同城o2o.app/光合同城o2o' with a name that contains leading or trailing whitespace characters".原创 2016-12-19 11:20:35 · 3803 阅读 · 0 评论 -
WARNING ITMS-90076:"Potential Loss of Keychain Access." 之后导入此构建版本时出错。
APP转让以后重新打包会有WARNING ITMS-90076: "Potential Loss of Keychain Access."警告,之后构建版本提示"导入此构建版本时出错。"解决方案。1.首先查看邮箱,查看错误信息。之前遇到过info.plist文件缺少配置的权限问题。根据提示信息添加对应权限说明。重新打包上传即可。Dear developer, We have discovered...原创 2018-05-16 15:23:19 · 6034 阅读 · 1 评论 -
导入第三方报错warning: -no_pie ignored for arm64 symbol(s) not found for architecture arm64
最近在老项目里添加BGFMDB及AFNetWorking的时候一直报错,具体错误信息如下:ld: warning: -no_pie ignored for arm64Undefined symbols for architecture arm64:"_OBJC_CLASS_$_NSManagedObject", referenced from:objc-class-ref in B...原创 2018-09-15 14:57:58 · 6472 阅读 · 0 评论