Files
yinmeng-ios/xplan-ios/Main/Home/View/XPFindNewFriendTableViewCell.m
chenshuanglin 40456d270d 首页UI
2023-03-03 19:31:22 +08:00

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