123456789101112131415161718 |
- //
- // SignsCell.h
- // LNManager
- //
- // Created by EchoShacolee on 2017/4/12.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface SignsCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *timeLab;
- @property (weak, nonatomic) IBOutlet UILabel *typeLab;
- @property (weak, nonatomic) IBOutlet UILabel *phoneNum;
- -(void)updataWithDic:(NSDictionary *)dic;
- @end
|