iOS 開發百問(1)

一、設置 ImagePicker 的大小數組

ImagePicker 在 Popover Controller 老是以默認大小顯示,設置 popoverContentSize 屬性彷佛無用。解決辦法是將ImagePicker 「包含」到一個定製的 ViewController 中,而後再 presentPopover 這個 ViewController :緩存

UIViewController *containerController = [[UIViewController alloc] init];app

containerController.contentSizeForViewInPopover = CGSizeMake(600,self.view.frame.size.height);iphone

 [containerController.viewaddSubview:_imagePicker.view];函數

_popController= [[UIPopoverController alloc] initWithContentViewController:containerController];ui

CGPoint p=[self.view convertPoint:button.center編碼

      fromView:sender.superview];spa

[_popController presentPopoverFromRect:(CGRect){p,CGSizeZero}調試

      inView:self.viewcode

      permittedArrowDirections:UIPopoverArrowDirectionAny

       animated:YES];

[_imagePicker.view setFrame:containerController.view.frame];// 很重要

注意,popover的寬度最多600。此外,_imagePicker 每次 presentPopoverFromRect 以前都必須 init一次,不然顯示位置不正確。

二、上傳文件中文文件名亂碼問題

在iOS客戶端將文件名用URL Encode編碼,而後在服務端用URL Decode解碼。

客戶端:

NSStringEncodingenc=NSUTF8StringEncoding;

[request setData:datawithFileName [filename stringByAddingPercentEscapesUsingEncoding:enc]

     andContentType:@"application/octet-stream" forKey:key];

服務端:

String filename=request.getParameter(「upload_file」);

filename=URLDecode.decode(s,」utf-8」);

三、Mac 64 bit Device

有時從SVN更新工程後,Scheme會顯示爲Mac 64 bit Device,而且不容許運行程序。這時只須要從新設置一下Target的DeploymentTarget就好(設置爲模擬器或調試設備)。

四、去除調試程序的NSLog

編譯參數Optimize Level根據不一樣的版本設置。例如對於Debug版本是None,對於Release版本是Fastest,Smallest。這樣,咱們能夠根據這個參數來從新定義NSLog函數:

#ifndef __OPTIMIZE__

#define NSLog(...)NSLog(__VA_ARGS__)

#else

#define NSLog(...) {}

#endif

 

五、警告:no previous prototye for function

根據c規範, 若是函數沒有參數,使用void做爲函數參數。

函數聲明應使用 「void functionA(void);」,而不能是」void functionA();」.

六、數組排序

方法一:

 

- (NSComparisonResult)compare:(Person *)otherObject {

    return [self.birthDatecompare:otherObject.birthDate];

}

 

NSArray *sortedArray;

sortedArray = [drinkDetails sortedArrayUsingSelector:@selector(compare:)]; 

方法二: 

NSSortDescriptor *sortDescriptor;

sortDescriptor = [[[NSSortDescriptor alloc]initWithKey:@"birthDate"

                                             ascending:YES] autorelease];

NSArray *sortDescriptors = [NSArray arrayWithObject:sortDescriptor];

NSArray *sortedArray;

sortedArray = [drinkDetails sortedArrayUsingDescriptors:sortDescriptors];

 

方法三( 10.6+):

 

NSArray *sortedArray;

sortedArray = [drinkDetails sortedArrayUsingComparator:^(id a, id b) {

    NSDate *first =[(Person*)a birthDate];

    NSDate *second =[(Person*)b birthDate];

    return [firstcompare:second];

}];

七、Xcode 4的build目錄在哪裏?

Xcode 4 作了許多改變。你將不能找到build目錄,你也沒法找到Products文件組。那麼它把項目編譯後生成的可執行文件放在哪裏了呢?答案就是「{USERNAME}/Library/Developer/Xcode/DerivedData/{PROJECT_NAME_AND_RANDOM_CRAP}/Build/Products/{BUILD_TYPE}/{PROJECT_NAME}.app」目錄。

八、警告:no rule to process file

Xcode試圖偵測每一種文件的類型。當它認爲文件屬於「源文件」類型(好比.js文件),老是試圖將它加到 Compile Sources中並試圖編譯。解決這個警告的辦法是,把這類文件從Build Phases的 Compile Sources移到 Copy Bundle Resources中。

九、警告:'initWithFrame:reuseIdentifier:'is deprecated

該方法在後續版本中將被拋棄。請使用

-  initWithStyle:reuseIdentifier:

十、itms-services不工做

itms-services 被apple/iphone識別爲一個特殊的字眼,它會校驗provisioning profile中指定的證書並進行安裝。

在安裝這個.ipa文件前,要校驗profisioning profile,這會鏈接到 "ax.init.itunes.apple.com"和 "ocsp.apple.com"。

若是你處於intranet中,請檢查是否可訪問上述地址。若是不能,你將沒法使用OTA來安裝應用程序。要求iOS 4.0以上。

注:上述地址不能訪問並不會影響安裝。可是iOS會在運行時經過上述地址檢查證書是否合法,若是安裝是合法的,iOS會緩存檢查結果(7天)。

相關文章
相關標籤/搜索