如何在Notification Center Today小部件中实现充满活力的选择状态

时间:2014-11-24 21:35:06

标签: ios ios8-today-widget uivisualeffectview

enter image description here

我希望实现一个选定的状态,其效果类似于内置窗口小部件的效果,通知后面的颜色显示出来。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

只需使用UIButtonUIVisualEffectsView的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值有帮助。)