ZXVideo.h 366 B

1234567891011121314151617181920
  1. //
  2. // ZXVideo.h
  3. // ZXVideoPlayer
  4. //
  5. // Created by Shawn on 16/6/22.
  6. // Copyright © 2016年 Shawn. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @interface ZXVideo : NSObject
  11. /// 标题
  12. @property (nonatomic, copy, readwrite) NSString *title;
  13. /// 播放地址
  14. @property (nonatomic, copy, readwrite) NSString *playUrl;
  15. @end