1
我在我的rootViewController的viewDidLoad方法中創建了UIImagePickerController。爲什麼我presentModalViewController方法不起作用
- (void)viewDidLoad {
[super viewDidLoad];
UIImagePickerController *pickerController=[[UIImagePickerController alloc] init];
pickerController.sourceType=UIImagePickerControllerSourceTypeSavedPhotosAlbum;
pickerController.delegate=self;
[self presentModalViewController:pickerController animated:YES];
[pickerController release];
}
但UIImagePickerViewController的視圖沒有出現在屏幕上。
SDK版本是4.3
是否有我犯的一些錯誤?
謝謝!
在'viewDidAppear:'中做它。 –
它確實有效。爲什麼? – Solskjaer
每次出現視圖都不會起作用嗎? – 2011-07-05 17:13:37