
Xcode
JerryVon
这个作者很懒,什么都没留下…
展开
-
百度地图api各种问题
1.更换1.22版本出现问题,UIDevice uniqueGlobalDeviceIdentifier 错误相关贴吧资料http://tieba.baidu.com/p/1944568287?pid=25621708561&cid=0#25621708561解决法方法找到target setting 中的设置 (Other Linker Flags)OTHE原创 2012-10-31 12:45:14 · 1142 阅读 · 0 评论 -
Undefined symbols for architecture 错误解决
这个错误是由于资源无法编译通过报出的。一般是从另外一个项目直接复制到新项目导致新项目无法编译出现的问题。解决办法如下Go to the Target in the navigator menuClick on the "Build Phases" tabAdd the .m file to "Compile Sources" (either drag it原创 2012-10-24 11:02:08 · 2386 阅读 · 0 评论 -
Xcode修改项目名称
1.直接点击targets查看右面板,修改project name。2.弹出面板确认相同修改的文件,确认后提交。3.edit Sheme 然后修改scheme的名字。原创 2012-10-24 11:05:09 · 4613 阅读 · 0 评论 -
Xcode编译问题: invalid deployment target for -stdlib=libc++ (requires iOS 5.0 or later)
这个是由于文件编译不支持可以将target-> Apple LLVM complier 4.1-Language ->C++ standard Library 改成Compiler Default.原创 2012-10-26 12:50:46 · 4982 阅读 · 1 评论 -
XCode编译问题:does not contain a(n) armv7s slice
这个是由于引入外部static lib时候报错,由于xcode升级成4.5后,编译结构有armv7和armv7s,如果这个时候编译会告知编译有问题,不支持armv7s,修改的方式如下:Got the same problem since updating XCode. To work around it, in the XCode project, change the Architectur原创 2012-10-26 12:18:08 · 3796 阅读 · 0 评论 -
百度display name为中文导致奔溃,productName和budlename区分出来
把"xxx-info.plist"中的"Bundle display name"的值改成了英文,或者把它的值修改成系统默认的"${PRODUCT_NAME}"或者任意的英文字符时,程序可以正常运行。另外app store也规定 Bundle display name不能使用中文。如果要显示中文可以采用app名称国际化的方式。建立文件InfoPlist.strings,添原创 2012-10-27 12:26:42 · 3693 阅读 · 0 评论 -
xcode编译问题 Undefined symbols for architecture armv
看下是否是没有添加libz.1.2.5.dylib的静态库。原创 2012-10-27 15:17:36 · 1736 阅读 · 0 评论 -
shell打包ios程序
一.命令xcodebuild -version原创 2014-08-18 10:05:09 · 2096 阅读 · 0 评论