使用 UISlider 无需用户交互

发布于 2024-11-09 01:24:06 字数 177 浏览 0 评论 0原文

我有一个自定义的 UISlider,我想用它来向用户显示信息,但我不希望用户能够与滑块交互。我已经尝试过

mySlider.enabled = NO;

,但滑块变灰,这看起来不像我想要的样子。

那么,如何将 UIControl 设置为禁用而不将其“灰化”。

I've got a customized UISlider that I want to use to display information to the user with and I don't want the user to be able to interact with the slider. I've tried

mySlider.enabled = NO;

but the slider becomes greyed out, which does not look the way I want it to look.

So, how do I set a UIControl to disabled without "greying" it out.

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

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

发布评论

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

评论(3

小傻瓜 2024-11-16 01:24:06
mySlider.userInteractionEnabled = NO;
mySlider.userInteractionEnabled = NO;
只为一人 2024-11-16 01:24:06

您不认为呈现一个不响应触摸的已启用滑块会让用户感到困惑吗? UISlider 不仅仅显示信息,它还告诉用户该信息是用户可调的。

您应该设计出自己的信息显示,但用户无法对其进行调整。

Don't you think it's going to confuse users to present an enabled slider that doesn't respond to touches? A UISlider doesn't just display information, it also tells the user that the information is user-adjustable.

You should come up with your own information display that doesn't look user-adjustable.

池木 2024-11-16 01:24:06

userInteractionEnabled 可能不适用于 UISlider (以及为什么它存在?),但它适用于它的超级视图。因此,尝试将 UISlider 附加到另一个辅助(透明?)NSView,然后为此辅助视图设置 userInteractionEnabled = NO。

userInteractionEnabled probably doesn't works for the UISlider (and why it exists??) but it works for its superview. So, try attaching the UISlider to another auxiliary (transparent?) NSView and then set userInteractionEnabled = NO to this auxiliary view.

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