| 1234567891011121314151617181920212223242526272829 |
- //
- // LocationManager.h
- // CParam
- //
- // Created by breeze deng on 2017/8/7.
- // Copyright © 2017年 Breeze. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <CoreLocation/CoreLocation.h>
- @protocol LocationManagerDelegate <NSObject>
- @optional
- - (void)updateLocationWithCoordinate:(CLLocationCoordinate2D)coordinate;
- @end
- @interface LocationManager : NSObject
- + (LocationManager *)shareInstance;
- @property (nonatomic, weak) id<LocationManagerDelegate> delegate;
- - (void)startUpdatingLocation;
- - (void)stopUpdatingLocation;
- @end
|