123456789101112131415161718 |
- //
- // RegionsCell.h
- // LNManager
- //
- // Created by EchoShacolee on 2017/4/18.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface RegionsCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *statusLab;
- @property (weak, nonatomic) IBOutlet UILabel *nameLab;
- @property (weak, nonatomic) IBOutlet UILabel *address;
- -(void)upDataWithDic:(NSDictionary *)dic;
- @end
|