LearninglistTableViewCell.h 789 B

123456789101112131415161718192021222324252627
  1. //
  2. // LearninglistTableViewCell.h
  3. // ChinaTheoryNetwork
  4. //
  5. // Created by 张毅成 on 2019/1/28.
  6. // Copyright © 2019 张毅成. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^LearninglistTableViewCellBlock)(void);
  11. @interface LearninglistTableViewCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet UIButton *buttonLike;
  13. @property (weak, nonatomic) IBOutlet UIImageView *imageViewIcon;
  14. @property (weak, nonatomic) IBOutlet UILabel *labelTime;
  15. @property (weak, nonatomic) IBOutlet UILabel *labelTitile;
  16. @property (weak, nonatomic) IBOutlet UILabel *labelNumber;
  17. @property (copy, nonatomic) LearninglistTableViewCellBlock blockDidTouchButtonLike;
  18. + (instancetype)cellWithTableView:(UITableView *)tableView;
  19. @end
  20. NS_ASSUME_NONNULL_END