如何在 UISlider 上放置图像?
我必须放置一个滑块并想在滑块上放置一个图像。我想要的滑块是这个
有人可以帮助我吗?
I have to place a slider and want to place an imge on slider. the slider i want is this
CAn any body help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅 UISlider 类参考。您需要设置
setThumbImage:forState:
以及setMinimumTrackImage:forState:
和setMaximumTrackImage:forState:
。使用相同的图像作为最小和最大轨迹图像,并使用UIControlStateNormal
作为状态。See the UISlider class reference. You want to set
setThumbImage:forState:
as well assetMinimumTrackImage:forState:
andsetMaximumTrackImage:forState:
. Use the same images for the minimum and maximum track images, and useUIControlStateNormal
for the state.下面的代码将在 ViewWillAppear 中...
Below code will be in ViewWillAppear...