VideoDownLoadListCell.h 647 B

123456789101112131415161718192021222324
  1. //
  2. // VideoDownLoadListCell.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2018/11/5.
  6. // Copyright © 2018 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class RQDownloadModel;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface VideoDownLoadListCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet UIButton *downLoadBtn;
  13. @property (nonatomic, strong) RQDownloadModel *model;
  14. @property (weak, nonatomic) IBOutlet UIImageView *ImageView;
  15. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  16. @property (weak, nonatomic) IBOutlet UILabel *stateLabel;
  17. // 更新视图
  18. - (void)updateViewWithModel:(RQDownloadModel *)model;
  19. @end
  20. NS_ASSUME_NONNULL_END