
iOS-程序发布
frankwun
这个作者很懒,什么都没留下…
展开
-
ios Error launching remote program: No such file or directory
iPhone真机调试报如下错误时,关掉Xcode,重新启动就可以了,注意是关掉Xcode,彻底关掉。Error launching remote program: No such file or directory一般是因为修改了 Bundle identifier 造成的。转载 2012-08-10 13:45:02 · 668 阅读 · 0 评论 -
真机调试出现问题,无法将应用程序装到设备上
真机调试出现问题,无法将应用程序装到设备上在往真机上装应用程序的时候出现“The entitlements specified in your application’s Code Signing Entitlements file do not match those specified in your provisioning profile.(0xE8008016).“的转载 2012-09-11 17:01:04 · 1450 阅读 · 0 评论 -
Xcode怎样修改product name?
选择项目 ==> TARGETS ==> Build Settings==> 搜索product name,修改即可。原创 2012-09-14 15:59:16 · 2945 阅读 · 0 评论 -
Code=3000 "未找到应用程序的“aps-environment”的权利字符串" 解决办法
3000错误就是因为profile和app ID不符合造成的push,即远程通知,教材的资料较少,想实践的话,只能每年花99美元买苹果开发者帐号才能玩这个,所以国内资料较少~搞了一天证书问题~基本弄明白了push ,develop需要三个验证:应用程序服务器的证书,用于连接APNs苹果机上装的证书,用于向iphone安装程序iphone上装的配置文件转载 2012-09-11 09:25:40 · 6932 阅读 · 1 评论 -
iOS程序发布前的准备工作
1. 把NSLog去掉。#ifndef __OPTIMIZE__#define NSLog(...) NSLog(__VA_ARGS__)#else#define NSLog(...) {}#endif2. 去掉调试时的环境变量,如NSZombieEnabled(Product->EditScheme->Run->Environment Va原创 2012-08-07 09:41:57 · 657 阅读 · 0 评论 -
DROPPING NSLOG IN RELEASE BUILDS
by Fraser Hess NSLog() is a great tool that helps debugging efforts. Unfortunately it is expensive, especially on the iPhone, and depending on how it’s used or what you’re logging, it coul转载 2012-11-13 09:24:42 · 372 阅读 · 0 评论 -
CFBundleVersion与CFBundleShortVersionString
CFBundleVersion,标识(发布或未发布)的内部版本号。这是一个单调增加的字符串,包括一个或多个时期分隔的整数。CFBundleShortVersionString 标识应用程序的发布版本号。该版本的版本号是三个时期分隔的整数组成的字符串。第一个整数代表重大修改的版本,如实现新的功能或重大变化的修订。第二个整数表示的修订,实现较突出的特点。第三个整数代表维护版本。该键的值不转载 2013-03-28 16:27:07 · 1059 阅读 · 0 评论