ZXVideoPlayerBatteryView.h 409 B

1234567891011121314151617181920
  1. //
  2. // ZXVideoPlayerBatteryView.h
  3. // ZXVideoPlayer
  4. //
  5. // Created by Shawn on 16/4/23.
  6. // Copyright © 2016年 Shawn. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. static const CGFloat kVideoBatteryViewWidth = 30.0;
  10. static const CGFloat kVideoBatteryViewHeight = 12.0;
  11. @interface ZXVideoPlayerBatteryView : UIView
  12. /// 设备电量
  13. @property (nonatomic, assign, readwrite) CGFloat batteryLevel;
  14. @end