ChatSearchFindbyFuJCell.h 882 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // ChatSearchFindbyFuJCell.h
  3. // smartRhino
  4. //
  5. // Created by armin on 2019/11/8.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ChatSearchFindbyFuJCell : UITableViewCell
  11. @property (strong,nonatomic) IBOutlet UIImageView *cell0UserImgView;
  12. @property (strong,nonatomic) IBOutlet UILabel *cell0UserNameLabel;
  13. @property (strong,nonatomic) IBOutlet UILabel *cell0TimeLabel;
  14. @property (strong,nonatomic) IBOutlet UIView *cell0ContentBgView;
  15. @property (strong,nonatomic) IBOutlet UIImageView *cell0FuJTypeImgView;
  16. @property (strong,nonatomic) IBOutlet UILabel *cell0FuJNameLabel;
  17. @property (strong,nonatomic) IBOutlet UILabel *cell0FuJDaXiaoLabel;
  18. + (CGFloat)configCell0Height;
  19. + (ChatSearchFindbyFuJCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  20. @end
  21. NS_ASSUME_NONNULL_END