// // GroupSquareCell.h // smartRhino // // Created by niuzhen on 2020/5/6. // Copyright © 2020 tederen. All rights reserved. // #import #import "GroupSquareModel.h" #import "GroupSquareSubModel.h" NS_ASSUME_NONNULL_BEGIN @interface GroupSquareCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *NameL; @property (weak, nonatomic) IBOutlet UIView *BlueView; @property (weak, nonatomic) IBOutlet UIImageView *IconView; @property (weak, nonatomic) IBOutlet UILabel *titleL; @property (weak, nonatomic) IBOutlet UILabel *userCountL; @property (weak, nonatomic) IBOutlet UILabel *TopicCountL; @property (weak, nonatomic) IBOutlet UILabel *subTitleL; @property (weak, nonatomic) IBOutlet UIButton *JoinBtn; + (CGFloat)configCell0Height; + (CGFloat)configCell1Height; + (GroupSquareCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; + (GroupSquareCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; - (void)setLeftDataModel:(GroupSquareModel *)model; - (void)setRightDataSubModel:(GroupSquareSubModel *)model; - (void)setRightDataSubModel:(GroupSquareSubModel *)model withSearchText:(NSString *)text; @end NS_ASSUME_NONNULL_END