更改 UISlider 轨道图像的 alpha?
有什么方法可以改变 UISlider 轨道图像的 alpha 值吗?我想使用记录的 API,以便我的应用程序可以进入应用程序商店。我使用的是苹果的默认轨道图像,而不是我自己的。这可能吗?
谢谢!
Is there any way to change the alpha of a UISlider's track image? I want to use documented API's so my app can get on the app store.I am using apple's default track image and NOT my own. Is this possible?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
currentMaximumTrackImage
和currentMinimumTrackImage
属性获取滑块的轨迹图像。然后,您可以调整这些图像上的 Alpha,但这对于代码来说非常繁琐,因为您必须设置上下文,使用 Alpha 绘制图像,然后从上下文中获取新图像。请注意,您必须为控件的每个适用状态的最小和最大轨迹图像执行此操作。您不能在整个滑块上设置 Alpha,还是您只是希望轨道具有 Alpha 而不是整个控件?
You can obtain the slider's track images using the
currentMaximumTrackImage
andcurrentMinimumTrackImage
properties. You can then adjust the alpha on these images but this is quite tedious to do with code as you'd have to set up a context, draw the image with the alpha, then obtain the new image from the context. Note that you would have to do this for the minimum and maximum track images for each applicable state of the control.Can't you set the alpha on the whole slider, or do you just want the track to have an alpha rather than the whole control?
您需要制作自己的 png 图像并更改 Alpha。
You will need to make your own png image and change the alpha.