12345678910111213141516171819202122232425262728 |
- //
- // HomeTeacherCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/6/10.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HomeSubItemModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface HomeTeacherCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIButton *collectBtn;
- @property (weak, nonatomic) IBOutlet UIImageView *imagV;
- @property (weak, nonatomic) IBOutlet UILabel *nameL;
- @property (weak, nonatomic) IBOutlet UILabel *subTitleL;
- @property (weak, nonatomic) IBOutlet UILabel *countl;
- @property (weak, nonatomic) IBOutlet UIView *lineV;
- @property (copy, nonatomic) void(^ClickCollectBlock)(NSInteger Id);
- + (HomeTeacherCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- - (void)setDataWithModel:(HomeSubItemModel *)model;
- - (void)setDataWithModel:(HomeSubItemModel *)model searchText:(NSString *)text;
- @end
- NS_ASSUME_NONNULL_END
|