Xcode编译错误和警告汇总

移动开发 iOS
你还在为Xcode报错或警告时手足无措,摸不着头脑么?看完本篇文章一定会对你有一些帮助,本文写出了几种常见的Xcode编译错误和警告汇总。

 

1、error: macro names must be identifiers YourProject_prefix.pch

原因: 因为你弄脏了预处理器宏,在它处于<Multiple Values>的时候修改了它

解决方法: Configiration选择All Configirations,清空它 然后分别重新定义你的Debug,Release,Distributin预处理器宏吧

2、warning: no rule to process file '$(PROJECT_DIR)/LoadingView.h' of type sourcecode.c.h for architecture armv6

原因: Target里Compile Sources里含有头文件 了,那里面不需要头文件

解决方法: 从Target里Compile Sources里删除头文件

3、Command /Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Plug-ins/iPhoneOS Build System Support.xcplugin/Contents/Resources/copypng failed with exit code 1

原因: png图像文件拷贝失败,看看信息上面提示Can't find哪个文件,一般都是从文件系统里删除文件而没有通过Xcode删除造成的,Xcode的项目配置文件依然纪录着这个文件的引用

解决办法: 给文件系统里增加相应的文件,或者从Xcode的Groups & Files删除它,或者从Target的Copy Bundle Resources里删除它

4、Code Sign error: The identity 'iPhone Developer: Your Name' doesn't match any valid certificate/private key pair in the default keychain

原因: 签名错误

解决办法: Target -> Get Info -> Build -> Code Signing -> 修改签名

记得左上角的Configuration类型要跟当前Build类型对应(Debug, Release, Distribution),否则改了也白改

5、could not create bundle folder for versioned model *.moda(好像是这个后缀名的这个文件)

原因:编译一次会产生一个新的

解决办法:应该把编译产生出来的moda文件都删了,然后clean下工程,重新build即可

6、error:There are no valid certificate/private key pairs in the default keychain

7、error:Cannot assign to 'self' outside of a method in the init family

原因:只能在init方法中给self赋值,Xcode判断是否为init方法规则:方法返回id,并且名字以init     +大写字母开头+其他  为准则。例如:- (id) initWithXXX;

出错代码:- (id) Myinit{

  self = [super init];

  ……

}

解决方法:- (id) initWithMy

{

  self = [super init];

}

 

责任编辑:闫佳明 来源: sina
相关推荐

2011-07-04 10:56:10

Qt 移植 编译

2010-09-17 08:40:49

JAVA编译错误

2014-08-05 10:51:09

Xcode警告Objective-C

2013-04-03 13:43:22

iOS开发Xcode屏蔽源文件编

2011-07-20 16:43:33

iPhone Bug Xcode

2009-04-03 14:50:01

微软Windows 7错误

2011-08-01 10:41:59

Xcode 条件编译

2021-09-06 11:26:23

Linux 5.15内核编译器

2013-07-04 15:05:14

Android

2011-07-25 16:03:47

XCode 编译

2012-03-26 14:25:34

C++

2011-08-01 09:34:32

Xcode Xcode 4 编译器

2010-07-29 14:18:57

Flex编译器参数

2022-04-15 19:28:31

漏洞网络攻击Windows

2009-11-30 17:16:13

openSUSE 11

2011-07-22 18:25:20

XCode iPhone SDK

2011-07-07 09:20:30

Xcode

2011-07-28 14:06:52

XCode XCode 3.2

2011-08-03 14:06:30

Xcode 4 安装

2020-11-28 17:51:36

人工智能AI神经网络
点赞
收藏

51CTO技术栈公众号