TDGroupInfoDetailCell.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // TDGroupInfoDetailCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2019/12/13.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TDGroupInfoDetailCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *cell0ImgV;
  12. @property (weak, nonatomic) IBOutlet UILabel *cell0TitleL;
  13. @property (weak, nonatomic) IBOutlet UILabel *cell1TitleL;
  14. @property (weak, nonatomic) IBOutlet UILabel *cell2TitleL;
  15. @property (weak, nonatomic) IBOutlet UISwitch *cell2Switch;
  16. @property (weak, nonatomic) IBOutlet UILabel *cell3TitleL;
  17. @property (weak, nonatomic) IBOutlet UIButton *cell3AddBtn;
  18. @property (weak, nonatomic) IBOutlet UIImageView *cell4imgV;
  19. @property (weak, nonatomic) IBOutlet UILabel *cell4NameL;
  20. @property (weak, nonatomic) IBOutlet UILabel *cell4LevelL;
  21. @property (weak, nonatomic) IBOutlet UILabel *cell4subL;
  22. @property (weak, nonatomic) IBOutlet UILabel *cell4TimeL;
  23. + (TDGroupInfoDetailCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  24. + (TDGroupInfoDetailCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  25. + (TDGroupInfoDetailCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  26. + (TDGroupInfoDetailCell *)configCell3:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  27. + (TDGroupInfoDetailCell *)configCell4:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  28. @end
  29. NS_ASSUME_NONNULL_END