KZVideoPlayer.h 438 B

1234567891011121314151617181920212223
  1. //
  2. // KZVideoPlayer.h
  3. // KZWeChatSmallVideo_OC
  4. //
  5. // Created by HouKangzhu on 16/7/21.
  6. // Copyright © 2016年 侯康柱. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface KZVideoPlayer : UIView
  10. - (instancetype)initWithFrame:(CGRect)frame videoUrl:(NSURL *)videoUrl;
  11. @property (nonatomic, strong, readonly) NSURL *videoUrl;
  12. @property (nonatomic,assign) BOOL autoReplay; // 默认 YES
  13. - (void)play;
  14. - (void)stop;
  15. @end