我在iOS 8 iPad中使用UIPopoverController for imagepicker.Its在iOS 7中工作但在iOS 8中没有.弹出窗口没有显示,popoverControllerDidDismissPopover立即被调用.请建议一个解决方案..
这里的代码使用:
这里的代码使用:
UIPopoverController *popVC= [[UIPopoverController alloc] initWithContentViewController:pickerController]; _pop = popVC; _pop.delegate = self; [_pop presentPopoverFromRect:attachBtnFrame inView:_sender permittedArrowDirections:UIPopoverArrowDirectionAny animated:NO];
谢谢..
解决方法
终于找到了解决方案:
在主线程中显示Popover如下.
在主线程中显示Popover如下.
if([[[UIDevice currentDevice] systemVersion] floatValue]>=8.0) { dispatch_after(dispatch_time(DISPATCH_TIME_NOW,(int64_t)(0.0 * NSEC_PER_SEC)),dispatch_get_main_queue(),^{ [_pop presentPopoverFromRect:attachBtnFrame inView:_sender permittedArrowDirections:UIPopoverArrowDirectionUp animated:NO]; }); }