12345678910111213141516171819202122232425262728293031323334 |
- //
- // ChangeTopicCell.h
- // smartRhino
- //
- // Created by niuzhen on 2019/12/25.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "NewTopicTextView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ChangeTopicCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet NewTopicTextView *cell0TextView;
- @property (weak, nonatomic) IBOutlet NewTopicTextView *cell1TextView;
- @property (weak, nonatomic) IBOutlet UIImageView *cell2ImagV;
- @property (weak, nonatomic) IBOutlet UILabel *cell2TitleL;
- @property (weak, nonatomic) IBOutlet UILabel *cell2SubTitleL;
- @property (weak, nonatomic) IBOutlet UIButton *cell2CloseBtn;
- @property (weak, nonatomic) IBOutlet UIImageView *cell3ImgV;
- @property (weak, nonatomic) IBOutlet UIButton *cell3CloseBtn;
- + (ChangeTopicCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChangeTopicCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChangeTopicCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChangeTopicCell *)configCell3:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|