我已经在视图中添加了UISlider。我想知道是否可以卸下旋钮或快速更改图像?我怎样才能做到这一点?

最佳答案

滑块旋钮称为拇指图像,您可以使用setThumbImage:forState:方法进行更改

mySlider.setThumbImage(nil, forState: UIControlState.Normal) // Remove the knob image by setting it to nil, or add your own image.

关于ios - 删除UISlider旋钮或更改图像快速,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31925250/

10-13 09:17