TCVideoJoinCell.h 666 B

12345678910111213141516171819202122232425262728
  1. //
  2. // TCVideoJoinCell.h
  3. // TCLVBIMDemo
  4. //
  5. // Created by annidyfeng on 2017/4/19.
  6. // Copyright © 2017年 tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TCVideoJoinCellModel : NSObject
  10. @property NSString *videoPath;
  11. @property AVAsset *videoAsset;
  12. @property UIImage *cover;
  13. @property int duration;
  14. @property int width;
  15. @property int height;
  16. @end
  17. @interface TCVideoJoinCell : UITableViewCell
  18. @property (nonatomic) TCVideoJoinCellModel *model;
  19. @property (weak) IBOutlet UIImageView *cover;
  20. @property (weak) IBOutlet UILabel *name;
  21. @property (weak) IBOutlet UILabel *duration;
  22. @property (weak, nonatomic) IBOutlet UILabel *resolution;
  23. @end