三重 UI 切换
我想创建一个具有三个位置的自定义 UISwtich。是否可以?
I want to create a custom UISwtich with three positions. Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想创建一个具有三个位置的自定义 UISwtich。是否可以?
I want to create a custom UISwtich with three positions. Is it possible?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
如果您想要标准 UI 元素或配置范围为 2 的
UISlider
,则应该使用UISegmentedControl
:然后设置
minimumValueImage
,maximumTrackImage
和thumbImage
使用适当的图像。You should be using
UISegmentedControl
if you want a standard UI-Element or configure aUISlider
with a range of 2:And then set the
minimumValueImage
,maximumTrackImage
andthumbImage
to use appropriate images.不使用内置的 UISwitch。你需要自己动手。
Not using the built-in UISwitch. You'll need to roll your own.
为什么不使用 UISegmentedControl?
Why not use a UISegmentedControl?
使用 UISlider 是一个很好的方法。但您还需要调整 UISlider 的机制,使其更像 UISwitch。即,当您不完全改变其位置时,它应该弹回到原始位置。
这就是我最终所做的(使用 FelixLam 答案的一部分):
随着......
Using UISlider is a good approach. But you would additionally want to adjust the mechanics of your UISlider to be more UISwitch-like. I.e., when you change its position incompletely then it should bounce back to the home position.
Here's what I ended up doing (using a part of FelixLam's answer):
Along with...