ChangeTopicCell.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // ChangeTopicCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2019/12/25.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "NewTopicTextView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface ChangeTopicCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet NewTopicTextView *cell0TextView;
  13. @property (weak, nonatomic) IBOutlet NewTopicTextView *cell1TextView;
  14. @property (weak, nonatomic) IBOutlet UIImageView *cell2ImagV;
  15. @property (weak, nonatomic) IBOutlet UILabel *cell2TitleL;
  16. @property (weak, nonatomic) IBOutlet UILabel *cell2SubTitleL;
  17. @property (weak, nonatomic) IBOutlet UIButton *cell2CloseBtn;
  18. @property (weak, nonatomic) IBOutlet UIImageView *cell3ImgV;
  19. @property (weak, nonatomic) IBOutlet UIButton *cell3CloseBtn;
  20. + (ChangeTopicCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  21. + (ChangeTopicCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  22. + (ChangeTopicCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  23. + (ChangeTopicCell *)configCell3:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  24. @end
  25. NS_ASSUME_NONNULL_END