更改 TextField 背景颜色的不透明度,不适用于文本 - Swift、UIKIT

发布于 2025-01-15 12:33:49 字数 143 浏览 0 评论 0原文

我正在寻找以编程方式更改 TextField BackgroundColor 的不透明度的方法。

当我这样做时:

UITextfield.layer.opacity - 它也会改变文本的不透明度。

谢谢

I am looking the ways to change the opacity of TextField BackgroundColor programatically.

When I do:

UITextfield.layer.opacity - it changes the opacity of text as well.

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你没皮卡萌 2025-01-22 12:33:49

解决方案 1:

您需要使用颜色的 alpha

textfield.backgroundColor = UIColor.red.withAlphaComponent(0.5)

解决方案 2:

您无法划分一个控件的不透明度,因此您需要在其后面放置一个背景视图并进行播放和它的不透明度

Solution 1:

You need to play with color's alpha

textfield.backgroundColor = UIColor.red.withAlphaComponent(0.5)

Solution 2:

You can't partition the opacity of one control , so you need to place a background view behind it and play with it's opacity

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文