2

在此处输入图像描述

我想实现一个选定的状态,其效果类似于内置小部件所具有的效果,通知背后的颜色显示出来。我怎样才能做到这一点?

4

1 回答 1

1

只需将 a 添加到usingUIButton的 contentView 中:UIVisualEffectsView[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 值会有所帮助)。

于 2014-11-24T21:35:05.640 回答