123456789101112131415161718192021222324 |
- //
- // VideoDownLoadListCell.h
- // jiaPei
- //
- // Created by 张嵘 on 2018/11/5.
- // Copyright © 2018 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class RQDownloadModel;
- NS_ASSUME_NONNULL_BEGIN
- @interface VideoDownLoadListCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIButton *downLoadBtn;
- @property (nonatomic, strong) RQDownloadModel *model;
- @property (weak, nonatomic) IBOutlet UIImageView *ImageView;
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
- @property (weak, nonatomic) IBOutlet UILabel *stateLabel;
- // 更新视图
- - (void)updateViewWithModel:(RQDownloadModel *)model;
- @end
- NS_ASSUME_NONNULL_END
|