// // LearninglistTableViewCell.h // ChinaTheoryNetwork // // Created by 张毅成 on 2019/1/28. // Copyright © 2019 张毅成. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN typedef void(^LearninglistTableViewCellBlock)(void); @interface LearninglistTableViewCell : UITableViewCell @property (weak, nonatomic) IBOutlet UIButton *buttonLike; @property (weak, nonatomic) IBOutlet UIImageView *imageViewIcon; @property (weak, nonatomic) IBOutlet UILabel *labelTime; @property (weak, nonatomic) IBOutlet UILabel *labelTitile; @property (weak, nonatomic) IBOutlet UILabel *labelNumber; @property (copy, nonatomic) LearninglistTableViewCellBlock blockDidTouchButtonLike; + (instancetype)cellWithTableView:(UITableView *)tableView; @end NS_ASSUME_NONNULL_END