12345678910111213141516171819202122232425262728293031 |
- //
- // SignsCell.m
- // LNManager
- //
- // Created by EchoShacolee on 2017/4/12.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import "SignsCell.h"
- @implementation SignsCell
- -(void)updataWithDic:(NSDictionary *)dic{
- _timeLab.text = [NSString stringWithFormat:@"%@",dic[@"SIGNTIME"]];
- _typeLab.text = [NSString stringWithFormat:@"%@",dic[@"SIGNTYPE"]];
- _phoneNum.text = [NSString stringWithFormat:@"%@",dic[@"SIM"]];
- }
- - (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
|