首頁  >  文章  >  後端開發  >  iOS 開發百問(2)

iOS 開發百問(2)

黄舟
黄舟原創
2017-01-20 09:26:08970瀏覽

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. Ingoopy ircumulum if irkdin 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、ex

"_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
完成

以上就是iOS 开发百问(2)的内容,更多相关内容请关注PHP中文网(www.php.cn)!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn