编译出错
acorld
非偷不可学也
展开
-
CodeSign error: code signing is required for product type 'Application' in SDK 'iOS 6.0'
最近真机编译(发布)多次遇到这个问题,简单分享下解决方案:CodeSign error: code signing is required for product type 'Application' in SDK 'iOS 6.0'解决:1.把Project和Target对应的Build Setting,下面的Code Signing设置成开发者协议,确保不要原创 2013-03-22 15:25:41 · 2902 阅读 · 0 评论 -
Xcode定位crash代码,找出崩溃原因的配置
如果你代码无缘无故的崩溃,我推荐你可以看看这篇文章。我们都2过。原创 2013-10-26 23:02:55 · 6894 阅读 · 0 评论 -
Xcode定位crash代码,找出崩溃原因的配置
如果你代码无缘无故的崩溃,我推荐你可以看看这篇文章。我们都2过。原创 2013-03-22 11:26:49 · 1806 阅读 · 0 评论 -
xcode编译Warning: Attempt to present xx on yy whose view is not in the window hierarchy!
本文原始地址:xcode编译Warning:编译xcode的时候报如下警告:错误代码Warning: Attempt to present xx on yy whose view is not in the window hierarchy!分析由于呈现模态视图xx类时,yy视图的view还没有被加载到window中。造成这个原因可能是在yy的viewdid原创 2013-05-07 08:50:05 · 4020 阅读 · 2 评论 -
Xcode: xxx.app depends on itself.this target might include its own product.
错误代码:xxx depends on itself.this target might include its own product.编译环境:xcode 4.5 mac os 10.8.0解决方法:1.在targets->build phases->Copy Bundle Resources,删除xx.app 参考2.在Products选中xx.app,在右侧原创 2013-04-28 14:03:22 · 4294 阅读 · 0 评论 -
clang: error: linker command failed with exit code 1 (use -v to see invocation)
本文原始地址:本文错误:clang: error: linker command failed with exit code 1 (use -v to see invocation)的排查总结1.相同的类被导入多次。2.图片等资源丢失/引用出错(包括build phases的引用)。3.Build Setting -> armv7 arm原创 2013-04-24 18:05:37 · 3329 阅读 · 0 评论 -
非Objc文件(c, c++)引起的NSObjCRuntime错误
今天在objc工程中,导入一些c、c++文件时,,编译引起了NSObjCRuntime错误,,,仔细检查发现,原来是在SK_Prefix.pch中,定义了 #ifdef __OBJC__ #import #import #endif #import "Utils.h" #import "Constants.h" #import转载 2013-03-27 17:07:48 · 2166 阅读 · 0 评论 -
关于编译错误:"_OBJC_CLASS_$_XXXXXX", referenced from:
在xcode 开发过程中,经常遇到如下错误: "_OBJC_CLASS_$_ClassName", referenced from:我总结了两种错误情况:1.一个类所在的库(框架)没有被引入,常见为framework添加。解决方法:添加该类所在的库(框架)2.一个类没有被正确的添加到工程中,这种情况在工程中的确存在这个类,可是程序就是原创 2013-03-22 15:33:02 · 5259 阅读 · 1 评论 -
ASIHttpRequest "_UTTypeCopyPreferredTagWithClass", referenced from:
错误代码:Undefined symbols for architecture x86_64: "_SCDynamicStoreCopyProxies", referenced from: -[ASIHTTPRequest configureProxies] in ASIHTTPRequest.o "_deflate", referenced from原创 2013-03-22 15:28:50 · 4465 阅读 · 0 评论 -
xcode 模拟器无法正常运行的解决
xcode模拟器无法正常使用,一直running,或者停在launch image处...原创 2013-09-09 11:16:27 · 11522 阅读 · 0 评论