// // TDGroupInfoDetailCell.h // smartRhino // // Created by niuzhen on 2019/12/13. // Copyright © 2019 tederen. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface TDGroupInfoDetailCell : UITableViewCell @property (weak, nonatomic) IBOutlet UIImageView *cell0ImgV; @property (weak, nonatomic) IBOutlet UILabel *cell0TitleL; @property (weak, nonatomic) IBOutlet UILabel *cell1TitleL; @property (weak, nonatomic) IBOutlet UILabel *cell2TitleL; @property (weak, nonatomic) IBOutlet UISwitch *cell2Switch; @property (weak, nonatomic) IBOutlet UILabel *cell3TitleL; @property (weak, nonatomic) IBOutlet UIButton *cell3AddBtn; @property (weak, nonatomic) IBOutlet UIImageView *cell4imgV; @property (weak, nonatomic) IBOutlet UILabel *cell4NameL; @property (weak, nonatomic) IBOutlet UILabel *cell4LevelL; @property (weak, nonatomic) IBOutlet UILabel *cell4subL; @property (weak, nonatomic) IBOutlet UILabel *cell4TimeL; + (TDGroupInfoDetailCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; + (TDGroupInfoDetailCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; + (TDGroupInfoDetailCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; + (TDGroupInfoDetailCell *)configCell3:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; + (TDGroupInfoDetailCell *)configCell4:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; @end NS_ASSUME_NONNULL_END