FakeLocationManager.h
490 Bytes
//
// FakeLocationManager.h
// YH_Analytics
//
// Created by Zhou Rongjun on 15/4/20.
// Copyright (c) 2015年 YOHO. All rights reserved.
//
#import <CoreLocation/CoreLocation.h>
@interface FakeLocationManager : NSObject
@property(assign, nonatomic) id<CLLocationManagerDelegate> delegate;
- (void)startUpdatingLocation;
- (void)changeAuthorizationStatus:(CLAuthorizationStatus)status;
- (void)updateLocations:(NSArray *)locations;
- (void)failedLocation:(NSError *)error;
@end