1234567891011121314151617181920212223242526272829303132333435 |
- //
- // ReplayMeCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/6/11.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ReplyModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ReplayMeCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *iconV;
- @property (weak, nonatomic) IBOutlet UILabel *nameL;
- @property (weak, nonatomic) IBOutlet UILabel *timeL;
- @property (weak, nonatomic) IBOutlet UILabel *contentL;
- @property (weak, nonatomic) IBOutlet UIView *subView;
- @property (weak, nonatomic) IBOutlet UILabel *subTitleL;
- @property (weak, nonatomic) IBOutlet UILabel *subComeL;
- @property (weak, nonatomic) IBOutlet UIView *redV;
- @property (weak, nonatomic) IBOutlet UIImageView *FileImgV;
- + (ReplayMeCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ReplayMeCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- - (void)setDataModel:(ReplyModel *)model;
- - (void)setDataCommentModel:(ReplyModel *)model;
- - (void)setDataModel:(ReplyModel *)model searchText:(NSString *)searchText;
- - (void)setDataCommentModel:(ReplyModel *)model searchText:(NSString *)searchText;
- @end
- NS_ASSUME_NONNULL_END
|