error
Capacity_bo
iOS 开发工程师,
展开
-
iOS error 解决办法
从sdk3.2.5升级到sdk 7.1中间废弃了很多的方法,还有一些逻辑关系更加严谨了。1,警告:“xoxoxoxo” is deprecated解决办法:查看xoxoxoxo的这个方法的文档,替换掉这个方法即可。2,警告:Declaration of "struct sockaddr" will not be visible outside of this function原创 2014-12-25 15:13:26 · 2529 阅读 · 0 评论 -
Xcode “The executable was signed with invalid entitlements.”
问题描述我们从网上下载一些现成的 Project 时,有时会遇到这个问题:The executable was signed with invalid entitlements.详细的提示信息为:The entitlements specified in your application’s Code Signing Entitlements file do not m原创 2015-01-19 13:37:26 · 1361 阅读 · 0 评论 -
AVAudioPlayer 的 Error Domain=NSOSStatusErrorDomain Code=-10875 "未能完成操作。(“OSStatus”错误 -10875。)"
今天在做一个项目,因为要播放一个音频,就选择用 AVAudioPlayer来来做,因为以前用过,也没有注意太多后来就直接写,但是写好之后运行看效果,怎么也播放不出来,本来是因为本地音频文件有问题,后来重新找一个文件然后在播放,还是出现同样的问题.用这段代码,以前是正常的,现在就不可以了,(网上还有好多开发人员用该方式是没有问题)- (void)playRuningDista原创 2015-04-08 16:54:20 · 13746 阅读 · 0 评论 -
错误: Property's synthesized getter follows Cocoa naming convention for returning 'owned'
今天遇到一个奇怪的问题,一开始用下面的代码定义一个全局变量:@property (strong,nonatomic) NSDictionary *newHomeDataDictionary;结果一直报错误: Property's synthesized getter follows Cocoa naming convention for returning '原创 2015-05-08 10:45:19 · 853 阅读 · 0 评论 -
pod 遇到无法 pod install 或者 pod update Pods written in Swift can only be integrated as frameworks; this
今天在用pod更新 pod 里面的最新工程的库的时候。遇到了下面的问题。[!] Pods written in Swift can only be integrated as frameworks; this feature is still in beta. Add `use_frameworks!` to your Podfile or target to opt into usi原创 2015-11-09 18:16:24 · 2391 阅读 · 0 评论 -
-fembed-bitcode is not supported on versions of iOS prior to 6.0 问题修复
今天开发发现一个问题 xcode 报下面的错误 -fembed-bitcode is not supported on versions of iOS prior to 6.0 解决的办法:去掉xcode7 Apple watch 的兼容选项 把BITCODE 将 YES 改成 NO原创 2015-11-11 18:03:44 · 806 阅读 · 0 评论 -
ios pod的使用遇到 library not found for -lPods
今天从svn上拿下来我们一起开的工程,使用pods管理第三方库,运行pod install 结果出现了library not found for -lPods 的错误,工程跑不起来,蛋疼的找了好久,在网上找也没有找到解决的办法,后来就对比pods的文件,返现在,pods 的文件夹里面多了两个文件,在Fromework里面多了一个libpods。a的库,看到这些才明白到底为什么会出现找不到lpods原创 2016-06-02 11:26:01 · 1860 阅读 · 0 评论 -
You must rebuild it with bitcode enabled 错误
问题详情:(null): URGENT: all bitcode will be dropped because ‘xxxx’ was built without bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from原创 2016-10-24 17:37:52 · 523 阅读 · 0 评论