PlayView.h 577 B

123456789101112131415161718192021222324252627
  1. //
  2. // PlayView.h
  3. // XMEye
  4. //
  5. // Created by XM on 2018/7/21.
  6. // Copyright © 2018年 Megatron. All rights reserved.
  7. //
  8. /******
  9. *
  10. *播放窗口界面view
  11. *如果想要自定义这个类,那么必须要有 +(Class)layerClass 方法
  12. *
  13. */
  14. #import <UIKit/UIKit.h>
  15. @interface PlayView : UIView
  16. @property (nonatomic,strong) UIActivityIndicatorView *activityView; // 加载状态图标
  17. #pragma mark 刷新界面图标
  18. - (void)refreshView;
  19. - (void)playViewBufferIng; //正在缓冲
  20. - (void)playViewBufferEnd;//缓冲完成
  21. - (void)playViewBufferStop;//预览失败
  22. @end