12345678910111213141516171819202122232425262728 |
- //
- // ReplayMeCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/6/11.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.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;
- + (ReplayMeCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- - (void)setDataWithText:(NSString *)text;
- - (void)setDatasubText;
- @end
- NS_ASSUME_NONNULL_END
|