gpt4 book ai didi

iphone - 如何以编程方式为处于触摸状态的 UIButton 创建灰色覆盖?

转载 作者:可可西里 更新时间:2023-11-01 05:42:19 25 4
gpt4 key购买 nike

我想创建一个通用类,当点击该类时,元素会变成灰色。

Facebook 的应用程序是我想要实现的目标的完美示例。点击时,他们所有的链接和图像都会变成灰色。

enter image description here

我只能猜测它们是子类 UIButton .

我将按钮的样式设置为 UIButtonTypeCustom 以去除圆角边框。除此之外,我不知道如何使用灰色叠加层,因为我在文档中看不到此类属性。

最佳答案

很简单:

#define TAG_GRAYVIEW 5671263 // some random number

// add the gray overlay
UIView *grayView = [[UIView alloc] initWithFrame:button.bounds];
grayView.backgroundColor = [UIColor grayColor];
grayView.tag = TAG_GRAYVIEW;

[button addSubview:grayView];

// remove the gray overlay
UIView *grayView = [button viewWithTag:TAG_GRAYVIEW];
[grayView removeFromSuperview];

关于iphone - 如何以编程方式为处于触摸状态的 UIButton 创建灰色覆盖?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9842559/

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