gpt4 book ai didi

ios - 如何在 Notification Center Today Widget 中实现充满活力的选择状态

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:19:19 27 4
gpt4 key购买 nike

enter image description here

我想实现一个选定状态,其效果类似于内置小部件所具有的效果,通知背后的颜色会透过该状态显示出来。我该怎么做?

最佳答案

只需使用 [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];

默认情况下,按钮的背景色应该是 [UIColor clearColor]。然后,当它被点击时,只需将其背景颜色设置为 [[UIColor lightGrayColor] colorWithAlphaComponent:0.5]。 (当通知中心后面的内容几乎全是白色时,alpha 值会有所帮助)。

关于ios - 如何在 Notification Center Today Widget 中实现充满活力的选择状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27114591/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com