1234567891011121314151617181920212223242526272829303132 |
- //
- // ShenHeCell.m
- // LNManager
- //
- // Created by EchoShacolee on 2017/4/12.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import "ShenHeCell.h"
- @implementation ShenHeCell
- -(void)updataWithDic:(NSDictionary *)dic{
-
- _typeLab.text = [NSString stringWithFormat:@"%@",dic[@"NOTIFYSTATUS"]];
- _trainTimeLab.text = [NSString stringWithFormat:@"%@",dic[@"TOTALTIME"]];
- _shenheType.text = [NSString stringWithFormat:@"%@",dic[@"AUDITSTATUS"]];
- _shenheTime.text = [NSString stringWithFormat:@"%@",dic[@"AUDITTIME"]];
- }
- - (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
|