12345678910111213141516171819202122232425262728 |
- //
- // SLNearbyPeopleCell.h
- // SLAiELTS
- //
- // Created by Gusont on 2023/5/10.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface SLNearbyPeopleCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *headImageView;
- @property (weak, nonatomic) IBOutlet UILabel *userNameLabel;
- @property (weak, nonatomic) IBOutlet UIImageView *sexImageView;
- @property (weak, nonatomic) IBOutlet UILabel *distanceLabel;
- @property (nonatomic, strong) UIScrollView *interestcrollView;
- - (void)confignCellWith:(SLFriendsModel *)model;
- @end
- NS_ASSUME_NONNULL_END
|