我希望实现一个选定的状态,其效果类似于内置窗口小部件的效果,通知后面的颜色显示出来。我怎么能这样做?
答案 0 :(得分:1)
只需使用UIButton
向UIVisualEffectsView
的contentView添加[UIVibrancyEffect notificationCenterVibrancyEffect]
:
UIButton *myButton = ...
self.effectsView = [[UIVisualEffectView alloc] initWithEffect:[UIVibrancyEffect notificationCenterVibrancyEffect]];
self.effectsView.translatesAutoresizingMaskIntoConstraints = NO;
[self addSubview:self.effectsView];
[self.effectsView.contentView addSubview:myButton];
默认情况下,按钮的backgroundColor应为[UIColor clearColor]。然后,当点击它时,只需将其背景颜色设置为[[UIColor lightGrayColor] colorWithAlphaComponent:0.5]
。 (当通知中心后面的内容几乎全是白色时,alpha值有帮助。)