我想实现一个选定的状态,其效果类似于内置小部件的效果,通知背后的颜色显示出来。我该怎么做?
Best Answer-推荐答案 strong>
只需使用 [UIVibrancyEffect notificationCenterVibrancyEffect] 将 UIButton 添加到 UIVisualEffectsView 的 contentView:
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 值会有所帮助。
关于ios - 如何在今日通知中心小部件中实现充满活力的选择状态,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/27114591/
|