1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // StudentListCell.m
- // LNManager
- //
- // Created by apple on 2017/5/5.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import "StudentListCell.h"
- @implementation StudentListCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- -(void)setDataDic:(NSDictionary *)dataDic {
-
- _dataDic = dataDic;
-
- //赋值
- _nameLabel.text = dataDic[@"TSO_NAME"];
- _sexLabel.text = [dataDic[@"TSO_SEX"] integerValue] == 1 ? @"男":@"女";
- _carTypeLabel.text = dataDic[@"TSO_TRAINTYPE"];
- NSString *dateStr = dataDic[@"TSO_APPLYDATE"];//
- if (dateStr.length > 10) {
- NSRange range = {5,5};
- _dateLabel.text = [dateStr substringWithRange:range];
- }else{
- _dateLabel.text = dateStr;
- }
-
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|