123456789101112131415161718192021 |
- //
- // LocServiceVC.h
- // LN_School
- //
- // Created by EchoShacolee on 2017/12/16.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void (^leeBlock)(double lng,double lat);//经纬度
- @class BMKMapView;
- @interface LocServiceVC : UIViewController
- @property (weak, nonatomic) IBOutlet BMKMapView *mapView;
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- @property(nonatomic,copy)leeBlock block;
- @end
|