12345678910111213141516171819202122232425262728293031 |
- //
- // ChatMsgSearchReseltContentCell.h
- // smartRhino
- //
- // Created by armin on 2019/11/4.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ChatMsgSearchModelSub.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ChatMsgSearchReseltContentCell : UITableViewCell
- @property (strong,nonatomic) IBOutlet UIImageView *cell0ShowImgView;
- @property (strong,nonatomic) IBOutlet UILabel *cell0TitleLabel;
- @property (strong,nonatomic) IBOutlet UILabel *cell0IntroLabel;
- @property (strong,nonatomic) IBOutlet UILabel *cell0TypeLabel;
- @property (weak, nonatomic) IBOutlet UILabel *type7NameLabel;
- + (CGFloat)configCell0Height;
- + (ChatMsgSearchReseltContentCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- - (void)bindData:(ChatMsgSearchModelSub *)data WithKeyStr:(NSString *)keyStr;
- @end
- NS_ASSUME_NONNULL_END
|