NewTopicCell.h 1.1 KB

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