我在学习用 slider 制作一个调节页面背景色的小程序的过程中发现,在左侧的面板上将它的 valve 和 maximum 都改成 255 的话,在模拟后滑块却在最左端,我的 slider 是用拖动的方式创建的,用的是 UIkit 我试了如果保持它的默认最大值是 1 的话,去调节 value,这时开始模拟是正常的,但往上改一些的话就不正常了,请问这是怎么回事呢?
1
Building 2020-10-01 15:39:18 +08:00 via iPhone
我记得 UISlider 值域好像就是 0 ~ 1
|
2
Building 2020-10-01 15:42:43 +08:00 via iPhone
The current value must be between the minimum and maximum values. If you try to programmatically set a slider’s current value to be below the minimum or above the maximum, it is set to the minimum or maximum instead. However, if you set the value beyond the range of the minimum or maximum in Interface Builder, the minimum or minimum values are updated instead.
=================== 官方文档居然能写错,醉了。 |