ChatMsgSearchReseltContentCell.h 865 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // ChatMsgSearchReseltContentCell.h
  3. // smartRhino
  4. //
  5. // Created by armin on 2019/11/4.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ChatMsgSearchModelSub.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface ChatMsgSearchReseltContentCell : UITableViewCell
  12. @property (strong,nonatomic) IBOutlet UIImageView *cell0ShowImgView;
  13. @property (strong,nonatomic) IBOutlet UILabel *cell0TitleLabel;
  14. @property (strong,nonatomic) IBOutlet UILabel *cell0IntroLabel;
  15. @property (strong,nonatomic) IBOutlet UILabel *cell0TypeLabel;
  16. @property (weak, nonatomic) IBOutlet UILabel *type7NameLabel;
  17. + (CGFloat)configCell0Height;
  18. + (ChatMsgSearchReseltContentCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  19. - (void)bindData:(ChatMsgSearchModelSub *)data WithKeyStr:(NSString *)keyStr;
  20. @end
  21. NS_ASSUME_NONNULL_END