TopicGroupManageCell.h 759 B

1234567891011121314151617181920212223242526
  1. //
  2. // TopicGroupManageCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2019/12/18.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TopicGroupManageCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  12. @property (weak, nonatomic) IBOutlet UILabel *countL;
  13. @property (weak, nonatomic) IBOutlet UIImageView *rightImgV;
  14. @property (weak, nonatomic) IBOutlet UIButton *cell1SelectBtn;
  15. @property (weak, nonatomic) IBOutlet UILabel *cell1NameL;
  16. + (TopicGroupManageCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  17. + (TopicGroupManageCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  18. @end
  19. NS_ASSUME_NONNULL_END