UISegmentedControl alpha 属性无法正常工作

发布于 2024-11-03 15:56:02 字数 223 浏览 1 评论 0原文

这种行为有解决办法吗?

这是一个完全默认的 UISegmentedControl,根本没有设置任何特殊属性。

设置其 alpha 或超级视图的 alpha 显示此行为,有什么建议还是这是一个错误?

https://i.sstatic.net/k1L7K.png

Is there a fix for this behavior?

This is a UISegmentedControl full default no special properties set at all.

Setting its alpha or the alpha of the superview shows this behavior, any suggestions or is this a bug ?

https://i.sstatic.net/k1L7K.png

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

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

发布评论

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

评论(1

一袭白衣梦中忆 2024-11-10 15:56:02

有同样的问题:(不知道如何使用UISegmentedControlStylePlain解决,

但它可以与UISegmentedControlStyleBar一起使用,并且您还可以设置tintColor

[segmentedControl setSegmentedControlStyle:UISegmentedControlStyleBar];
[segmentedControl setAlpha:0.5];
[segmentedControl setTintColor:[UIColor colorWithRed:0.5 green:0.5 blue:0.5 alpha:1.0]];

Have the same problem :( No idea how to fix with UISegmentedControlStylePlain

But with it works with UISegmentedControlStyleBar, and you can also set a tintColor

[segmentedControl setSegmentedControlStyle:UISegmentedControlStyleBar];
[segmentedControl setAlpha:0.5];
[segmentedControl setTintColor:[UIColor colorWithRed:0.5 green:0.5 blue:0.5 alpha:1.0]];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文