40 lines
807 B
Objective-C
40 lines
807 B
Objective-C
//
|
|
// XPFindNewFriendTableViewCell.m
|
|
// xplan-ios
|
|
//
|
|
// Created by XY on 2023/3/3.
|
|
//
|
|
|
|
#import "XPFindNewFriendTableViewCell.h"
|
|
/// Third
|
|
#import <Masonry.h>
|
|
/// Tool
|
|
#import "NetImageView.h"
|
|
#import "ThemeColor.h"
|
|
|
|
@interface XPFindNewFriendTableViewCell()
|
|
/// 头像
|
|
@property (nonatomic, strong) NetImageView *avatarImageView;
|
|
/// 昵称
|
|
@property (nonatomic, strong) UILabel *nickLabel;
|
|
@property (nonatomic, strong) UIStackView *stackView;
|
|
|
|
@property (nonatomic, strong) UILabel *introduceLabel;
|
|
|
|
@end
|
|
|
|
@implementation XPFindNewFriendTableViewCell
|
|
|
|
- (void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
// Initialization code
|
|
}
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
|
[super setSelected:selected animated:animated];
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
@end
|