33 lines
700 B
Objective-C
33 lines
700 B
Objective-C
//
|
|
// GIGaUserIDViewCell.m
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/14.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import "GIGaUserIDViewCell.h"
|
|
|
|
@implementation GIGaUserIDViewCell
|
|
|
|
- (void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
// Initialization code
|
|
}
|
|
- (void)loadCellData:(NSIndexPath *)indexPath user:(GiGaUser*)user{
|
|
|
|
if (indexPath.section == 1 && indexPath.row == 0 ) {
|
|
|
|
self.IdLabel.text = user.userId;
|
|
self.userTitle.text = @"用户ID";
|
|
|
|
}
|
|
}
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
|
[super setSelected:selected animated:animated];
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
@end
|