SLNearbyPeopleCell.h 580 B

12345678910111213141516171819202122232425262728
  1. //
  2. // SLNearbyPeopleCell.h
  3. // SLAiELTS
  4. //
  5. // Created by Gusont on 2023/5/10.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface SLNearbyPeopleCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UIImageView *headImageView;
  11. @property (weak, nonatomic) IBOutlet UILabel *userNameLabel;
  12. @property (weak, nonatomic) IBOutlet UIImageView *sexImageView;
  13. @property (weak, nonatomic) IBOutlet UILabel *distanceLabel;
  14. @property (nonatomic, strong) UIScrollView *interestcrollView;
  15. - (void)confignCellWith:(SLFriendsModel *)model;
  16. @end
  17. NS_ASSUME_NONNULL_END