5

我通过子类化 UIPopoverBackgroundView(使用本教程)并使用 UIPopoverController 呈现它来制作自定义弹出框。不幸的是,一旦我指定自定义 popoverBackgroundViewClass,本机变暗背景就会消失。使用自定义 UIPopoverBackgroundView 时,有什么办法可以让背景变暗?我可以用来模拟本机行为的任何其他解决方案吗?

4

2 回答 2

5

您需要的只是将下一个代码添加到您的 UIPopoverBackgroundView 实现的 initWithFrame: 方法中。

UIView *dimView = [[UIView alloc] initWithFrame:CGRectMake(0 - self.frame.origin.x,
                                                           0 - self.frame.origin.y,
                                                           [UIScreen mainScreen].bounds.size.width,
                                                           [UIScreen mainScreen].bounds.size.height)];
dimView.backgroundColor = [UIColor blackColor];
dimView.alpha = 0.15;
dimView.userInteractionEnabled = NO;
[self addSubview:dimView];

它与默认的 Apple 实现相同。

于 2014-12-12T22:38:28.760 回答
5

不知道为什么这被否决了,这是一个很好的问题,因为当您实现自定义 UIPopoverBackgroundView 时,没有设置暗色背景。在研究这个问题时,我确定最好的方法是自己设置!

就在创建弹出视图之前,我创建了一个“掩码视图”,它将在弹出视图之前添加到视图中。这段代码还包括一个很好的淡入淡出效果:

self.customPopoverMaskView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height)];
    self.customPopoverMaskView.backgroundColor = [UIColor blackColor];
    self.customPopoverMaskView.alpha = 0.3f;

    [UIView transitionWithView:self.view
                      duration:0.3
                       options:UIViewAnimationOptionTransitionCrossDissolve
                    animations:^ {
                        [self.view addSubview:self.customPopoverMaskView];
                    }
                    completion:nil];

要删除视图,请将其插入处理弹出视图消失的方法中:

[UIView transitionWithView:self.view
                  duration:0.3
                   options:UIViewAnimationOptionTransitionCrossDissolve
                animations:^ {
                    [self.customPopoverMaskView removeFromSuperview];
                }
                completion:nil];

对我来说效果很好。快乐编码!

亚伦

于 2014-02-12T21:11:09.513 回答