| 12345678910111213141516171819202122 |
- //
- // VideoPreviewCell.h
- // iSales-NPD
- //
- // Created by Jack on 2017/6/21.
- // Copyright © 2017年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "RAYTPlayer.h"
- @interface VideoPreviewCell : UICollectionViewCell
- @property (nonatomic,strong) NSDictionary *item;
- @property (strong, nonatomic) IBOutlet RAYTPlayer *playerView;
- @property (strong, nonatomic) IBOutlet UIImageView *VideoImageView;
- - (void)reset;
- - (void)play;
- @end
|