iOS 开发百问(2)

原文链接:http://blog.csdn.net/kmyhy/article/details/23167321

11、无法调试设备“Error launching remote program: failed to get the task forprocess 6405.”

ad-hoc Profile不支持调试。改为development profile。

12、OTA无法下载,提示“无法下载应用程序”

.plist文件中的 bundle-identifier写错了(或者包含中文字符),比如:

<key>bundle-identifier</key>

<string>com.xxx.--APN--</string>

其中的com.xxx.—APN—中包含中文(“--”),应改为英文。

或者签名证书是无效的。请在Orgnizer中检测签名证书。

12、ASIHTTPRequest中经常出现EXEC_BAD

使用ASIHTTPRequest进行异步请求时,经常出现程序崩溃。尤其在是请求过程中(未Finished),如果你切换了视图的时候。因为是异步请求,request对象可能在任何时候调用delegate(ViewController),而此时ViewController却可能已经释放了。因为UIKit随时会释放当前不显示的ViewController。如果你切换了ViewController,那么那个被隐藏的ViewController随时会被释放。如果request回调ViewController的delegate方法时,而那个ViewController正好被UIKit给释放,则会导致EXEC_BAD。在官方文档中也提到:Requests don’t retain their delegates, so if there’s a chance your delegatemay be deallocated while your request is running, it is vital that you clearthe request’s delegate properties. In most circumstances, if your delegate isgoing to be deallocated, you probably also want to cancel request, since you nolonger care about the request’s status

因此在使用ASIHTTPRequest进行异步编程时,我们要自己清空request的delegate属性。在delegate(ViewController)的dealloc方法中你应该: 
[request clearDelegatesAndCancel];
[request release];

当然,request不能是临时变量,而应当是一个retained的成员对象(或者属性),否则你无法在dealloc方法中clearDelegatesAndCancel。

 

13、Assertion failure in -[UIActionSheet showInView:]

在主线程中打开action sheet:

 [selfperformSelectorOnMainThread:@selector(showActionSheet) withObject:nilwaitUntilDone:NO];

showActionSheet方法:

-(void) showActionSheet

{ sheet = [[UIActionSheet alloc] initWithTitle:@"This is my ActionSheet!" delegate:self cancelButtonTitle:@"OK"destructiveButtonTitle:@"Delete Message!" otherButtonTitles:@"Option1", @"Option 2", @"Option 3", nil];

 

[sheet showInView:self.view];

}

14、RegexKitLite编译错误

编译时提示如下错误:

"_uregex_find", referenced from:       _rkl_search in RegexKitLite.o

……

在Build Settgins的Other Linke Flag中加入

-licucore

15、Archive时遇到“ResourceRules.plist:cannot read resources”错误

在build settings中找到Code Signing Resource Rules Path,填入$(SDKROOT)/ResourceRules.plist

 

16、使用ZombieEnable解决EXEC_BAD_EXCESS错误

这个错误是向一个release对象发送消息导致的。可以通过开启ZombieEnable参数来查找真正的问题。

Edit Scheme,选择Run …Debug,打开Arguments组,在Environment Variables中添加一个参数:

运行程序,当出现EXEC_BAD_EXCESS错误时,控制台中会输出具体出错的信息,比如:

*** -[ITSMTicketCell release]: message sent to deallocated instance0x897e920

直接指明了是由于某个对象在被释放之后,你发送了一条消息给它。

 

17、 关于Xcode4无法调试2代代老设备的问题

升级到Xcode4以后,你会发现许多程序无法在2代设备(有些3代设备,比如iTouch 3实际上仍然是2代的硬件)上运行了,并且Xcode4仅仅“Running…”就直接“Finished…”了,无论是Xcode控制台还是设备日志中,都没有任何提示。

注意:2代和3代的区别在于cpu架构。2代设备使用ARMv6架构cpu,3代设备使用ARMv7架构cpu。 iPhone 2G/3G,iPod 1G/2G属于ARMv6架构(2代),iPhone3GS/4, iPod 3G,iPad属于ARMv7架构(3代)。

stackoverflow上有关于这个的帖子,其中shapecatcher的答案是最准确的:

http://stackoverflow.com/questions/6378228/switching-from-xcode3-to-xcode4-cant-load-programs-onto-older-ipod-touch

1、打开Target的Build Settings,找到Architectures选项,将其从“$(ARCHS_STANDARD_32_BIT)”修改为“armv6$(ARCHS_STANDARD_32_BIT)”。注意大小写是敏感的。“$(ARCHS_STANDARD_32_BIT)”是一个变量,实际上等同于armv7。

2、Base SDK不需要改变,仍然是Lastest iOS。

3、打开Target的info,找到Required device capabilities,将下面的armv7删除。这个选项是Xcode4自己添加在工程中的默认设置,如果不去掉它,第1步-第2步的工作是无法生效的。

18、“Avalid provisioning profile for this device was not found.”

在你的开发证书中增加该设备的UDID。

 

19、将设备添加到 portal

连接设备,打开Orgnizer。在设备列表中选中设备,点击右边窗口左下角的“Add to Portal”按钮。或者在设备列的设备上右击,选择“AddDevice to Provisioning Portal”。

 

20、renew profile

打开Orgnizer,在LIBRARY中选择Provisioning Profiles。在右边窗口选择要renew的profile,点击右下角的“Refresh”按钮。输入Portal的密码,profile将被renew。

 

21、renew签名证书及设备激活文档

  • 从portal移除过期的签名证书
  • 重新制作开发证书和发布证书
  • 删除开发和部署所用的激活文档(provisioningprofiles)
  • 使用新的证书重新制作用于开发和部署的Provisioningprofiles
  • 从钥匙串中删除老的证书
  • 在XcodeOrganizer中安装新的provisioning profiles
  • 完成
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值