UIPopoverController没有在iOS iOS 8中展示

前端之家收集整理的这篇文章主要介绍了UIPopoverController没有在iOS iOS 8中展示前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在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如下.
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];
    });
}
原文链接:https://www.f2er.com/iOS/335561.html

猜你在找的iOS相关文章