GiGaMaskTime/GIGA/Modules/Me/View/userInfoView/GIGaUserWeChatViewCell.m

32 lines
676 B
Objective-C

//
// GIGaUserWeChatViewCell.m
// GIGA
//
// Created by lianxiang on 2018/9/14.
// Copyright © 2018年 com.giga.ios. All rights reserved.
//
#import "GIGaUserWeChatViewCell.h"
@implementation GIGaUserWeChatViewCell
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
}
-(void)loadCellData:(NSIndexPath*)indexPath user:(GiGaUser*)user{
if (user.weixin && ![user.weixin isKindOfClass:[NSNull class]]) {
self.weiXinCount.text = user.weixin;
}
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end