FindResultViewCell.h 572 B

1234567891011121314151617181920212223
  1. //
  2. // FindResultViewCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2019/12/7.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FindChatItemsModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface FindResultViewCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet UIImageView *IconV;
  13. @property (weak, nonatomic) IBOutlet UILabel *TitleL;
  14. @property (weak, nonatomic) IBOutlet UILabel *TimeL;
  15. @property (weak, nonatomic) IBOutlet UILabel *SubTitleL;
  16. - (void)loadDataWithModel:(FindChatItemsModel *)model;
  17. @end
  18. NS_ASSUME_NONNULL_END