[iOS] 用 UIImagePickerController 從 相片庫挑選一張照片來顯示片段碼 , UIImagePickerControllerSourceTypeSavedPhotosAlbum , didFinishPickingMediaWithInfo ,

.h檔: 要加

@interface ViewController : UIViewController

 

.m 檔:

.
.
.

    
    UIImagePickerController *picker = [[UIImagePickerController alloc] init];
    picker.delegate = self;
    picker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
    picker.allowsEditing = YES;

    [self presentViewController:picker animated:YES completion:nil];

    
    resultBox.text = @"Hello World!";
}

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
    
    [self dismissViewControllerAnimated:YES completion:nil];

    NSLog(@"\nin didFinishPickingMediaWithInfo\n");
    imgBox.image = [info objectForKey:UIImagePickerControllerOriginalImage];

}

Read more

[iOS] Objective-C , block 寫法

螢幕快照 2014 03 05 下午12 37 49

在新的iOS API中block被大量用來取代傳統的delegate和callback,而新的API會大量使用block主要是基於以下兩個原因:

可以直接在程式碼中撰寫等會要接著執行的程式,直接將程式碼變成函數的參數傳入函數中,這是新API最常使用block的地方。 可以存取區域變數,在傳統的callback實作時,若想要存取區域變數得將變數封裝成結構才能使用,而block則是可以很方便地直接存取區域變數。

螢幕快照 2014 03 05 下午3 00 49螢幕快照 2014 03 05 下午3 35 41 螢幕快照 2014 03 05 下午5 43 02 螢幕快照 2014 03 05 下午7 29 09

 

螢幕快照 2014 03 05 下午6 11 37

Objective C Blocks: Summary, Syntax & Best Practices 

http://amattn.com/p/objective_c_blocks_summary_syntax_best_practices.html

 

 

Read more

[iOS] iOS tour videos , iOS 開發教學影片

Building an iPhone App Combining Tab Bar, Navigation and Tab
http://www.youtube.com/watch?v=LBnPfAtswgw

這個影片是比較舊的 xcode (3.5 , 4) , 範例從 空的 App delegate 開始 , 用 coding 方式加進 Tab Bar controller 

 

 

 

 

 

 

 

Objective-C : Classes & methods

http://www.youtube.com/watch?v=dOYz0z8BcuM&feature=share&list=PLg7_sxrfkvipsXzYe1UhQI4Qe6Yh8z_qD&index=17

 

[ Become an iOS Developer ] What You Will Learn – series 

http://www.youtube.com/watch?v=KNYOmXf_jJc&list=PLg7_sxrfkvipsXzYe1UhQI4Qe6Yh8z_qD&feature=share

 

UIViewController  : Understanding View Loading / view lifecycle

http://www.youtube.com/watch?v=i1oz60UUWYA&feature=share&list=PLg7_sxrfkvipsXzYe1UhQI4Qe6Yh8z_qD&index=33

 

Create views programmatically

http://www.youtube.com/watch?v=9dsG4R5WE2g&feature=share&list=PLg7_sxrfkvipsXzYe1UhQI4Qe6Yh8z_qD&index=38

 

 

 

 

 

 

螢幕快照 2014 02 27 下午8 51 41

 

Tab Bar Navigation Controllers with Storyboards

Video : https://vimeo.com/53563148

 

 

 

 

 

 

 

iOS Development Tutorial – Series
….. Using a Tab Bar Controller with two view
http://www.youtube.com/watch?v=B3_8rAbxoiY&list=PL4E61E23CD4B49974&feature=c4-overview-vl

螢幕快照 2014 02 28 上午10 38 33