UISlider最大值调整
我有三个滑块,这些显示了我需要的不同元素的百分比,所有元素的最大值是 100 (a+b+c=100)。
现在这些都相互依赖并有助于制作饼图。
目前都可以设置为最大值 100。
如何使这种依赖关系和最大值逻辑一致。
提前致谢。
I am having three sliders and these shows the percentages for different elements what i need the max value of all is 100 (a+b+c=100).
Now these all are dependent to each other and helps in making a pie chart.
currently all can set to max value that is 100.
how can make this dependency and max value logically.
Thanx in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在处理滑块更改的方法中,根据当前滑块调整所有滑块的最大值,例如:
编辑: 调整最大值确实可能会导致异常行为。相反,为了确保总和不超过 100,如果滑块的值超出所需值,您可以手动调整滑块的值:
In methods where you handle your sliders changes adjust maximum values for all sliders depending on current ones, e.g.:
Edit: Adjusting maximum value may indeed lead to not behaviour. Instead to ensure that the sum does not exceed 100 you can manually adjust slider's value if it is more than desired: