首页 > 移动平台 > 详细

ios8.0 ipad UIImagePickerController

时间:2014-12-18 18:50:37      阅读:446      评论:0      收藏:0      [点我收藏+]

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

原文:http://blog.csdn.net/xiao562994291/article/details/42008375

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!