1234567891011121314151617181920212223242526272829303132333435 |
- //
- // NewTopicCell.h
- // smartRhino
- //
- // Created by niuzhen on 2019/12/16.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "NewTopicTextView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface NewTopicCell : TDTableViewCell
- @property (weak, nonatomic) IBOutlet NewTopicTextView *textView;
- @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 *cell3ImagV;
- @property (weak, nonatomic) IBOutlet UIButton *cell3CloseBtn;
- @property (weak, nonatomic) IBOutlet UILabel *bgLabel;
- + (NewTopicCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (NewTopicCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (NewTopicCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (NewTopicCell *)configCell3:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|