VideoPreviewCell.h 480 B

12345678910111213141516171819202122
  1. //
  2. // VideoPreviewCell.h
  3. // iSales-NPD
  4. //
  5. // Created by Jack on 2017/6/21.
  6. // Copyright © 2017年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "RAYTPlayer.h"
  10. @interface VideoPreviewCell : UICollectionViewCell
  11. @property (nonatomic,strong) NSDictionary *item;
  12. @property (strong, nonatomic) IBOutlet RAYTPlayer *playerView;
  13. @property (strong, nonatomic) IBOutlet UIImageView *VideoImageView;
  14. - (void)reset;
  15. - (void)play;
  16. @end