美文网首页
Xcode报错以及解决方案

Xcode报错以及解决方案

作者: 捷风 | 来源:发表于2017-05-09 09:56 被阅读265次

前言:

        好记性不如烂笔头,虽然不喜欢写文章,但是为了时间久了不会忘掉,也该尝试的把开发中遇到的问题用笔记的形式记录下来了。

一、

         *报错:CodeSign error: code signing is required for product type 'Application' in SDK 'iOS 9.3'*

        *解决方法:将Build Settings里面的code signing 改为iOS developer *

二、

         *报错:[BEROR]CodeSign error: Certificate identity ‘iPhone Distribution: *.’ appears more than once in the keychain. The codesign tool requires there only be one.**

         *解决方案:上述错误是在项目进行Archive打包时出现的。

         原因:出现此问题的原因是多个证书之间冲突造成。

         解决方案:打开mac系统的“实用工具”-“钥匙串访问”-“我的证书”中,如果看到有重复的证书名,那么请将早期的证书删除掉,重启Xcode。*

三、

         *报错:Could not change executable permissions on the application.*

         *解决方案原因:拥有相同的bundle Identifier已经在设备上运行。解决办法:删除设备中或者模拟器中的App。*

四、

          *报错:ld: library not found for -lmp3lameclang: error: linker command failed with exit code 1 (use -v to see invocation).*

          *解决方案:原因:在工作中,一般是多人编辑同一个工程时其中一人没将某个库上传导致的。解决方案:上传具体静态库*

五、

            *报错:A valid provisioning profile matching the application's Identifier 'XXXX' could not be found*

            *解决方案:原因:当编译后出现上述问题,缺少证书或者是在Code Signing Identity处没有选择对应的证书或者是证书不对应。

             解决办法:重装证书,检查证书是否是否选择是否对应。*

六、

            *报错:在ARC项目中,使用了MRC模式开发的第三方库*

            *解决方案:1)打开项目所属的TARGETS设置2)点击Build Phases选项,进入到子项Compile Sources中,找到使用MRC的文件,添加-fno-objc-arc标记,表明在编译时,该文件使用MRC编译3)相反的,如果想在MRC项目中,使用ARC的文件,可以使用 -fobjc-arc 标记即可*

七、

              *报错:Xcode编译出现Link错误,出现“duplicate symbols for architecture i386 clang”提示*

              *解决方案:问题:链接时,项目有重名文件解决方案:1.在Xcode的Targets->Bulid Phases-Link Binary With Libraries中查看有无重复的lib2.全工程搜索下重名文件*

八、

              *报错:关于category位于静态库,引用该静态库的工程使用其中的Category,出现“unrecognized sent to class”提示。*

             *解决方案:问题:标准静态库与OC之间的linker的差异。在标准的UNIX静态库,linker symbol是依照每一个类别而产生的,但由于category并没有产生一个类别,所以抛出上述错误。

               解决办法:1.在该静态库的Targets->Bulid Setting->Linker flags->在其中添加-Objc2.在使用该静态库的工程Targets->Build Setting->Linker Flags->加上-all_load或者-force_load*

九、

              *报错:warning:ld:warning directory not found for option'-L'*

             *解决方案:问题:通常是path问题TargetsText 里面找到Build Setting ,然后Library Search Paths和Framework Search Paths,删除掉编译报warning的路径即可。*

十、

              Xcode运行时打印台报以下警告  CUICatalog: Invalid asset name supplied:

              解决方案:由于给imageNamed:@"" 添加图片的时候传了空字符串或者在文件中找不到对应的图片,检查下所有添加image的地方,包括xib和sb里面

十一、

               有一天发现Xcode 7.3上面看不到iOS8.*的视图层次图了,在Debug area,看见下面的错误日子;

            -[UIWindow viewForFirstBaselineLayout]: unrecognized selector sent to instance 0x7fa018c428a0

解决方案:添加一个UIView的拓展     //Xcode 7.3上面看不到iOS8.*的视图层次图

```

+ (void)load {

if ([self instancesRespondToSelector:@selector(viewForFirstBaselineLayout)]) {

return ;

}

Method original = class_getInstanceMethod(self,    @selector(viewForBaselineLayout));

class_addMethod(self, @selector(viewForFirstBaselineLayout), method_getImplementation(original), method_getTypeEncoding(original));

class_addMethod(self, @selector(viewForLastBaselineLayout), method_getImplementation(original), method_getTypeEncoding(original));

}

```

十二、

Xcode打印台打印出  CUICatalog: Invalid asset name supplied:

说明是有图片设置的为nil

找到对应的地方设置图片就可以了

###14、

AFN报错

Assertion failure in -[AFHTTPRequestSerializer requestWithMethod:URLString:parameters:error:], /Users/Yan/Desktop/Yan/Doctor/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m:353

2016-04-24 11:22:01.022 fastDoctor[4725:172619] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: URLString'

```

原因reason: 'Invalid parameter not satisfying: URLString'

URL拼接错误!!!  ----

相关文章

网友评论

      本文标题:Xcode报错以及解决方案

      本文链接:https://www.haomeiwen.com/subject/lcjbtxtx.html