标签:style blog http io color ar os sp div
在ipad的ios8.0系统上,actionsheet上点击响应后如果调用了
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
1 [self.controller presentViewController:picker animated:YES completion:^(){ }];
这个方法,并不能够显示picker这个控制器,因为ios8系统认为当前有一个actionsheet popover控制器了,不能再present第二个控制器
这篇文章讲的很仔细
解决方法就是在下一个runloop再去调用
presentViewController:picker
这个方法。
这个时候actionsheet已经被调了dismissViewControllerAnimated,这样就能够显示第二个控制器。
ios actionsheet 跟 imagepickercontroller冲突的问题解决方法
标签:style blog http io color ar os sp div
原文地址:http://www.cnblogs.com/huangzizhu/p/4088996.html