我想要的意思是,添加UIToolbar
SourceType UIImagePickerController
PhotoLibrary。
我尝试使用:
[UIViewController presentViewController:UIImagePickerController completion:^{}];
一次就像成功一样。但是,PhotoLibrary 的 UINavigation Back 按钮使用UIToolbar
是隐藏的。
请,如何手段或参考,文件,其他。
我试过使用presentViewController: completion: block
.
- (void)showPhotoLibrary {
if ( ![UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary] ) {
return;
}
UIImagePickerController* ipc = [[UIImagePickerController alloc] init];
[ipc setSourceType:UIImagePickerControllerSourceTypePhotoLibrary];
[ipc setDelegate:self];
[self presentViewController:ipc animated:YES completion:^{
[ipc setToolbarHidden:NO];
}];
}