如何在iOS7中的UIPopoverController中禁用较暗的透明效果?

前端之家收集整理的这篇文章主要介绍了如何在iOS7中的UIPopoverController中禁用较暗的透明效果?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用UIPopoverController在iPad iOS7中弹出一个视图,如下所示:
if (!self.popover) {
        UIViewController *popupVC = [[UIViewController alloc] init];
        [popupVC.view addSubview:thePopupView];
        popupVC.preferredContentSize = CGSizeMake(240,140);
        self.popover = [[UIPopoverController alloc] initWithContentViewController:popupVC];
        self.popover.delegate = self;
    }


    [self.popover presentPopoverFromBarButtonItem:barButton permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];

但是当弹出窗口处于活动状态时,它会使屏幕变暗,而此效果不会影响iOS6中的其他视图.

如何克服这个问题?谢谢!

解决方法

如果您的意思是在弹出窗口下插入的调光视图,则只有一种解决方法 – 使用自定义popoverBackgroundViewClass.

这很复杂,但并不像你想象的那么复杂.

原文链接:https://www.f2er.com/iOS/332140.html

猜你在找的iOS相关文章