首页 > 代码库 > ios8.0 ipad UIImagePickerController
ios8.0 ipad UIImagePickerController
Warning:Attempt to present <UIImagePickerController:0x7c0ae400> on <CAGUCreateContactViewController:0x7bf61a00> which is already presenting (null)
解决办法
if([[[UIDevice currentDevice] systemVersion] floatValue]>=8.0)
{
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
[self presentViewController:cameraUI animated:NO completion:nil];
}];
}
else{
[controller presentViewController:cameraUI animated:NO completion:nil];
}
ios8.0 ipad UIImagePickerController
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。