微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

CPSlider UISlider 的改进版

程序名称:CPSlider

授权协议: MIT

操作系统: iOS

开发语言: Objective-C

CPSlider 介绍

cpslider 是 UiSlider 的改进版,is a drop-in, subclass replacement for UiSlider that
allows varying scrubbing speeds as the user drags away from the slider thumb,
emulating the slider used in the iOS iPod music player. It also includes
delegate callbacks to allow an object to be notified of scrubbing speed
changes.

实例代码

cpslider *slider = [[cpslider alloc] initWithFrame:CGRectMake(18, 166, 284, 23)];
slider.minimumValue = 0.0f;
slider.maximumValue = 1.0f;
[self.view addSubview:slider]
[self.slider addTarget:self action:@selector(sliderValueDidChange:) forControlEvents:UIControlEventValueChanged];

CPSlider 官网

https://github.com/cbpowell/CPSlider

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐