HomeTeacherCell.h 781 B

1234567891011121314151617181920212223242526
  1. //
  2. // HomeTeacherCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/6/10.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HomeSubItemModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface HomeTeacherCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet UIButton *collectBtn;
  13. @property (weak, nonatomic) IBOutlet UIImageView *imagV;
  14. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  15. @property (weak, nonatomic) IBOutlet UILabel *subTitleL;
  16. @property (weak, nonatomic) IBOutlet UILabel *countl;
  17. @property (copy, nonatomic) void(^ClickCollectBlock)(NSInteger Id);
  18. + (HomeTeacherCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  19. - (void)setDataWithModel:(HomeSubItemModel *)model;
  20. @end
  21. NS_ASSUME_NONNULL_END