TDGroupSearchCell.h 579 B

123456789101112131415161718192021222324
  1. //
  2. // TDGroupSearchCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2019/12/14.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TDGroupSearchCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *imagV;
  12. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  13. @property (weak, nonatomic) IBOutlet UILabel *subL;
  14. @property (weak, nonatomic) IBOutlet UIButton *listBtn;
  15. + (TDGroupSearchCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  16. @end
  17. NS_ASSUME_NONNULL_END