MyTDTopicSelectExtentCell.h 833 B

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