123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- //
- // ZFSliderView.h
- // ZFPlayer
- //
- // Copyright (c) 2016年 任子丰 ( http://github.com/renzifeng )
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- #import <UIKit/UIKit.h>
- @protocol ZFSliderViewDelegate <NSObject>
- @optional
- // 滑块滑动开始
- - (void)sliderTouchBegan:(float)value;
- // 滑块滑动中
- - (void)sliderValueChanged:(float)value;
- // 滑块滑动结束
- - (void)sliderTouchEnded:(float)value;
- // 滑杆点击
- - (void)sliderTapped:(float)value;
- @end
- @interface ZFSliderButton : UIButton
- @end
- @interface ZFSliderView : UIView
- @property (nonatomic, weak) id<ZFSliderViewDelegate> delegate;
- /** 滑块 */
- @property (nonatomic, strong, readonly) ZFSliderButton *sliderBtn;
- /** 默认滑杆的颜色 */
- @property (nonatomic, strong) UIColor *maximumTrackTintColor;
- /** 滑杆进度颜色 */
- @property (nonatomic, strong) UIColor *minimumTrackTintColor;
- /** 缓存进度颜色 */
- @property (nonatomic, strong) UIColor *bufferTrackTintColor;
- /** loading进度颜色 */
- @property (nonatomic, strong) UIColor *loadingTintColor;
- /** 默认滑杆的图片 */
- @property (nonatomic, strong) UIImage *maximumTrackImage;
- /** 滑杆进度的图片 */
- @property (nonatomic, strong) UIImage *minimumTrackImage;
- /** 缓存进度的图片 */
- @property (nonatomic, strong) UIImage *bufferTrackImage;
- /** 滑杆进度 */
- @property (nonatomic, assign) float value;
- /** 缓存进度 */
- @property (nonatomic, assign) float bufferValue;
- /** 是否允许点击,默认是YES */
- @property (nonatomic, assign) BOOL allowTapped;
- /** 是否允许点击,默认是YES */
- @property (nonatomic, assign) BOOL animate;
- /** 设置滑杆的高度 */
- @property (nonatomic, assign) CGFloat sliderHeight;
- /** 设置滑杆的圆角 */
- @property (nonatomic, assign) CGFloat sliderRadius;
- /** 是否隐藏滑块(默认为NO) */
- @property (nonatomic, assign) BOOL isHideSliderBlock;
- /// 是否正在拖动
- @property (nonatomic, assign) BOOL isdragging;
- /// 向前还是向后拖动
- @property (nonatomic, assign) BOOL isForward;
- @property (nonatomic, assign) CGSize thumbSize;
- /**
- * Starts animation of the spinner.
- */
- - (void)startAnimating;
- /**
- * Stops animation of the spinnner.
- */
- - (void)stopAnimating;
- // 设置滑块背景色
- - (void)setBackgroundImage:(UIImage *)image forState:(UIControlState)state;
- // 设置滑块图片
- - (void)setThumbImage:(UIImage *)image forState:(UIControlState)state;
- @end
|