如何创建 iPod 风格的 UISlider
有没有人有一种快速的方法来制作一个看起来像 iPod 应用程序中的 UISlider(想想洗涤器/音量控制)。 基本上我需要看起来与 MPVolumeView 完全相同的东西,但不控制声音。 如果做不到这一点,是否有人有资源来制作一个(旋钮/轨道)。
Does anyone have a quick way to make a UISlider that looks like the ones in the iPod app (think scrubber/volume control). Basically I need something that looks exactly like an MPVolumeView, but doesn't control sound. Failing that, does anyone have the assets to make one (the knob/track).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,我知道如何创建自定义滑块,我只是想知道是否有人已经有了图像。 我想不是,所以我提取了自己的。
供将来参考,如果其他人需要这样做:
下面的资产库,
http://img200.imageshack.us/gal.php?g=whiteslide。 png
下载这些图像,并使用以下代码进行全部设置:
Yeah, I knew how to create the custom slider, I just wanted to know if anyone had the images already. I guess not, so I extracted my own.
For future reference, if anyone else needs to do this:
Gallery of assets below,
http://img200.imageshack.us/gal.php?g=whiteslide.png
Download those images, and use this code to set it all up:
使用,您应该能够近似获得您想要的外观(不能保证完全相似)
通过在 UISlider 上 。 (通过子类化 UIControl 来创建自己的滑块也不是很难。)
You should be able to approximate the appearance you want (wouldn't guarantee exact likeness) by using
on UISlider. (It's also not very hard to create your own slider, by subclassing UIControl.)