你好,歡迎來到IOS教程網

 Ios教程網 >> IOS訊息 >> 關於IOS >> iOS 開發百問(6)

iOS 開發百問(6)

編輯:關於IOS

61、警告“addexplicit braces to avoid dangling else”

所謂“危險的else”是類似這樣的代碼:

if(a== 10)

printf("TEN");

else

printf("NOT TEN");

a = 100;

編譯器認為你的else 子句導致語義不清,你到底是什麼意思?是無論 a 是否等於10 , if 執行完之後都要將 a 賦值為100,還是只想在 else 子句(即 a 不等於10 的時候)中將 a 賦值為 100?

如果是前者,正確的寫法應該是:

if(a== 10) {

printf("TEN");

}else{

printf("NOT TEN");

}

a= 100;

如果是後者,正確的寫法應該是:

if(a== 10) {

printf("TEN");

}else{

printf("NOT TEN");

a = 100;

}

當然,對於c/c++/java 編譯器來說,這只是一個小問題,並不會導致無法編譯。編譯器實際上是傾向於前者的,它自動按第一種情況處理。但它會警告你這是一種不好的代碼風格,你可以用#pragma clang diagnostic ignored "-Wswitch" 宏忽略該警告,或者將編譯選項 MissingBraces and Parentheses 設置為 NO。

62、iPad模擬器不顯示 Home 鍵

從Xcode 4.3 開始,為了獲得更大的用戶可用空間,iPad 模擬器不顯示 Home 鍵。 你可以通過菜單“ 硬件 > 首頁”或者快捷鍵??H 來代替 Home 鍵。

63、Novisible @interface for 'NSURL' declares the selector 'query'

iOS6 中,該方法被拋棄,請用 NSURL+Parameters 替代。

64、certificateidentity 'iphone distribution' appears more than once

這是證書重復的錯誤,需要將鑰匙串裡重復的證書刪掉編譯才能通過。但是,如果你重啟Xcode ,會發現之前刪除的證書又回來了。但當重新啟動Xcode時,Xcode裡的證書會被導進鑰匙串,所以僅僅是刪除鑰匙串中重復證書是無效的。

相信 許多同學對 Xcode 的這個 Bug 深惡痛絕了,但除了反復地(但是徒勞地)從鑰匙串中刪除證書,也沒有別的辦法了。其實,也不能光怪 Xcode,而是跟”iPhone 配置使用工具“也有一定的關系。

Xcode中的這些“殘留”證書不以常規的形式存在。如果你安裝了“iPhone 配置實用工具”,這些證書實際上存在於/Users/km-cn/Library/MobileDevice/Applications/目錄下的.app 文件中,這些.app 實際上是 “iPhone配置實用工具”――“應用程序”中的所導入的 app。你可以用Finder ――“顯示包內容”來查看.app 。其中一個名叫“embedded.mobileprovision”的文件,就是“殘留”的重復證書。你可以逐一刪除這些 .app,也可以干脆把該目錄下的所有.app 都刪除(反正只要項目文件存在,你隨時可以編譯出這些 .app並導入到“iPhone 配置實用工具”中)。最後,還要將 Orgnizer 中的重復證書也刪除,然後重啟Xcode。

65、Application Identifier 'com. ydtf.*' which doesn't match the current setting'com.ydtf.dlt'

如你所見,這兩個Application ID 絕對是匹配的(*表示通配符)。但這個莫名的錯誤會導致你始終不能編譯。這絕對是 Xcode 的另一個 Bug,先將 CodeSigning 修改為 Don't Code Sign,Build,然後再修改回正確的簽名 Build。

66、Theidentity used to sign the executable is no longer valid.

由於前面的簽名問題導致不能Archive。解決方式見問題 65。

67、在iPad 中使用 presentModalViewController 設置彈出窗口的大小

TestViewController*testVC = [[TestViewController alloc] initWithNibName:@"TestViewController"bundle:nil];

testVC.modalPresentationStyle= UIModalPresentationFormSheet;

testVC.modalTransitionStyle= UIModalTransitionStyleCrossDissolve;

[selfpresentModalViewController:testVC animated:YES];

testVC.view.superview.frame= CGRectMake(0, 0, 649, 397);//it's important to do this afterpresentModalViewController

testVC.view.superview.center = self.view.center;

注意://it'simportant to do this after presentModalViewController。即一定要在[selfpresentModalViewController:testVC animated:YES];之後設置frame的大小!

68、在iPad 中定制 ActionSheet 的按鈕和Popover 箭頭方向。

ActionSheet在 iPad 上以Popover的方式顯示。默認不會顯示cancelButton(SDK用Popover之外的區域代替cancelButton,用戶只要點擊Popover之外的區域就等同點擊取消按鈕)。如果你這樣init一個ActionSheet:

UIActionSheet* sheet=[[UIActionSheet alloc]initWithTitle:nil

delegate:self

cancelButtonTitle:@"cancel"

destructiveButtonTitle:@"ok"

otherButtonTitles:nil];

則最終只有紅色的destructiveButton 會顯示。

如果你非要顯示cancelButton,則可以這樣干:

UIActionSheet* sheet=[[UIActionSheet alloc]initWithTitle:nil

delegate:self

cancelButtonTitle:nil

destructiveButtonTitle:nil

otherButtonTitles:@"cancel",@"ok",nil];

// sheet.cancelButtonIndex=0;

sheet.destructiveButtonIndex=1;

指定destructiveButtonIndex之後,該按鈕被顯示為紅色。

但千萬不要指定cancelButtonIndex,因為在iPad上cancelButton會被移除。

在iPad中,SDK沒有提供可以修改 actionSheet 的箭頭方向的API,系統自動判斷箭頭顯示的方向。但我們可以利用showFromRect的第1個參數來改變箭頭的方向:

CGRect r=sender.bounds;

r.size.width=2*self.view.bounds.size.width;

r.origin.x=-self.view.bounds.size.width+sender.bounds.size.width/2+sender.frame.origin.x;

[sheet showFromRect:r inView:sender animated:YES];

這樣就將原來的左箭頭,換成了上箭頭。

其實iOS 在判斷 actionSheet 彈出方向時的邏輯很簡單,哪邊有“足夠”的空間,它就往哪邊彈出。當我們利用showFromRect的第1個參數將3個方向都“堵死”後,它就只能老老實實地從我們想要的方向彈出了。

69、在 ASINetworkQueue 中 setShowAccurateProgress=YES 不起作用

在 networkQueue.showAccurateProgress= YES之前加入 request.showAccurateProgress= YES ,否則showAccurateProgress 不會生效。示例代碼:

equest.showAccurateProgress=YES;

networkQueue.showAccurateProgress=YES;

[networkQueue setSuspended:YES];

[networkQueue addOperation:request];

networkQueue.uploadProgressDelegate=self;

[networkQueue go];

此外,由於 CFNework 中的一個 Bug,對於小於128K的數據,無法跟蹤其上傳/下載的精確進度。

70、如何設置 UIWebView 背景色為透明?

在IB中設置 UIWebView 的 Background 屬性為 Clear Color 並不能使其背景透明。要達到這個目的,你需要使用以下兩句:

[webView setBackgroundColor:[UIColor clearColor]];

[webView setOpaque:NO];

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved