1234567891011121314151617181920 |
- //
- // LockCell.h
- // LN_School
- //
- // Created by EchoShacolee on 2017/4/17.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface LockCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *nameLab;
- @property (weak, nonatomic) IBOutlet UILabel *statusLab;
- @property (weak, nonatomic) IBOutlet UILabel *timeLab;
- @property (weak, nonatomic) IBOutlet UILabel *reasonLab;
- -(void)upDataWithDic:(NSDictionary *)dic;
- + (CGFloat)heightForDic:(NSDictionary *)dic;
- @end
|