// // QXLocationManager.h // YSDTrucksProject // // Created by 党凯 on 2020/7/17. // Copyright © 2020 党凯. All rights reserved. // #import @protocol QXLocationManagerDelegate @optional -(void)locationSuccessWithCity:(NSString*_Nonnull)city province:(NSString*_Nonnull)province area:(NSString*_Nonnull)area address:(NSString*_Nonnull)address; @end NS_ASSUME_NONNULL_BEGIN @interface QXLocationManager : NSObject @property (nonatomic,weak)iddelegate; +(instancetype)shareManager; /** 开始定位 */ -(void)startLoction; /** 结束定位 */ -(void)stopLoction; @end NS_ASSUME_NONNULL_END