SignsCell.m 691 B

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