12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // TDGroupInfoDetailCell.h
- // smartRhino
- //
- // Created by niuzhen on 2019/12/13.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- 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
|