ZXVideoPlayerTimeIndicatorView.h 597 B

123456789101112131415161718192021222324
  1. //
  2. // ZXVideoPlayerTimeIndicatorView.h
  3. // ZXVideoPlayer
  4. //
  5. // Created by Shawn on 16/4/21.
  6. // Copyright © 2016年 Shawn. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef NS_ENUM(NSUInteger, ZXTimeIndicatorPlayState) {
  10. ZXTimeIndicatorPlayStateRewind, // rewind
  11. ZXTimeIndicatorPlayStateFastForward, // fast forward
  12. };
  13. static const CGFloat kVideoTimeIndicatorViewSide = 96;
  14. @interface ZXVideoPlayerTimeIndicatorView : UIView
  15. @property (nonatomic, strong, readwrite) NSString *labelText;
  16. @property (nonatomic, assign, readwrite) ZXTimeIndicatorPlayState playState;
  17. @end