1234567891011121314151617181920 |
- //
- // MinRecordeCell.h
- // LNManager
- //
- // Created by EchoShacolee on 2017/4/14.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface MinRecordeCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *speed;
- @property (weak, nonatomic) IBOutlet UILabel *status;
- @property (weak, nonatomic) IBOutlet UILabel *time;
- @property (weak, nonatomic) IBOutlet UILabel *phoneNum;
- @property (weak, nonatomic) IBOutlet UILabel *mile;
- -(void)upDataWithDic:(NSDictionary *)dic;
- @end
|