ShenHeCell.m 794 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // ShenHeCell.m
  3. // LNManager
  4. //
  5. // Created by EchoShacolee on 2017/4/12.
  6. // Copyright © 2017年 lee. All rights reserved.
  7. //
  8. #import "ShenHeCell.h"
  9. @implementation ShenHeCell
  10. -(void)updataWithDic:(NSDictionary *)dic{
  11. _typeLab.text = [NSString stringWithFormat:@"%@",dic[@"NOTIFYSTATUS"]];
  12. _trainTimeLab.text = [NSString stringWithFormat:@"%@",dic[@"TOTALTIME"]];
  13. _shenheType.text = [NSString stringWithFormat:@"%@",dic[@"AUDITSTATUS"]];
  14. _shenheTime.text = [NSString stringWithFormat:@"%@",dic[@"AUDITTIME"]];
  15. }
  16. - (void)awakeFromNib {
  17. [super awakeFromNib];
  18. // Initialization code
  19. }
  20. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  21. [super setSelected:selected animated:animated];
  22. // Configure the view for the selected state
  23. }
  24. @end