8

所以现在我至少得到了以下代码的回调......

- (void)viewDidLoad {

[super viewDidLoad];
mapView=[[MKMapView alloc] initWithFrame:self.view.frame];
//mapView.showsUserLocation=TRUE;
mapView.delegate=self;
[self.view insertSubview:mapView atIndex:0];

NSLog(@"locationServicesEnabled: %@", [CLLocationManager locationServicesEnabled] ? @"YES":@"NO");
    CLLocationManager *newLocationManager = [[CLLocationManager alloc] init];
    [newLocationManager setDesiredAccuracy:kCLLocationAccuracyBest];
    [newLocationManager setDistanceFilter:kCLDistanceFilterNone];
    [self setLocationManager:newLocationManager];


[[self locationManager] setDelegate:self];
[[self locationManager] startUpdatingLocation];
NSLog(@"Started updating Location");

}


- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {

NSLog(@"Did update to location");
mStoreLocationButton.hidden=FALSE;
location=newLocation.coordinate;

MKCoordinateRegion region;
region.center=location;
MKCoordinateSpan span;
span.latitudeDelta=0.01;
span.longitudeDelta=0.01;
region.span=span;


[mapView setRegion:region animated:TRUE];


}

我可以在第二种方法中设置断点,并且 NSLog 正在报告持续的位置更新,但由于某种原因,使用 span 的缩放不起作用。知道为什么吗?它有我的坐标和一切。在这个问题上有点挠头。

4

7 回答 7

16

将 CLLocationManager 分配给您班级的(强)属性。(我假设您使用的是 ARC BTW。)现在 CLLocationManager 不会超过 viewDidLoad 方法的末尾,因此它也不会调用您的委托方法。

于 2012-07-28T14:38:22.563 回答
14

确保您已<CLLocationManagerDelegate>@interface文件中添加。

编辑

如果委托设置正确,请确保您使用的是您的locationManager属性:

.h文件中:

@property (nonatomic, strong) CLLocationManager *locationManager;

viewDidLoad

self.locationManager = [[CLLocationManager alloc] init];
[self.locationManager setDelegate:self];
[self.locationManager startUpdatingLocation];
于 2012-07-28T09:29:39.173 回答
5

我认为,您可以通过两种方式完成这项工作:

  1. 使用 CLLocation 框架

检查您是否采用了带有 CLLocationManagerDelegate 方法的 ViEWController

#import<MapKit/MapKit.h>
#import <CoreLocation/CoreLocation.h>

@interface ViewController : UIViewController <CLLocationManagerDelegate, 
                                              MKMapViewDelegate>
{
    CLLocationCoordinate2D location;
    MKMapView *mapView;
}
@end

在 ViewController.m 中:

@implementation GSViewController
- (void)viewDidLoad {

    [super viewDidLoad];
    mapView=[[MKMapView alloc] initWithFrame:self.view.frame];
    mapView.showsUserLocation=TRUE;
    mapView.delegate=self;
    [self.view insertSubview:mapView atIndex:0];


    CLLocationManager *locationManager=[[CLLocationManager alloc] init];
    locationManager.delegate=self;
    locationManager.desiredAccuracy=kCLLocationAccuracyNearestTenMeters;

    [locationManager startUpdatingLocation];

}

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation{


    NSLog(@"new location: %@", newLocation);
    location=newLocation.coordinate;

    MKCoordinateRegion region;
    region.center=location;
    MKCoordinateSpan span;
    span.latitudeDelta=0.01;
    span.longitudeDelta=0.01;
    region.span=span;

    [mapView setRegion:region animated:TRUE];

}


-(void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error
{
    NSLog(@"error: %@", error.description);
}
@end

2.使用相同的 MKMapKit 框架您可以通过使用名为 didUpdateUserLocation 的 MKMapViewDelegate 方法来做到这一点: 这里您不需要 CLLocaionManager,这将通过以下方式完成: 在 ViewController.h 中:

#import <MapKit/MapKit.h>
@interface ViewController : UIViewController < MKMapViewDelegate>
{
    CLLocationCoordinate2D location;
    MKMapView *mapView;
}
@end

在 ViewController.m 文件中:

@implementation GSViewController
- (void)viewDidLoad {

    [super viewDidLoad];
    mapView=[[MKMapView alloc] initWithFrame:self.view.frame];
    mapView.showsUserLocation=TRUE;
    mapView.delegate=self;
    [self.view insertSubview:mapView atIndex:0];

}

-(void)mapView:(MKMapView *)mapV didUpdateUserLocation:(MKUserLocation *)userLocation
{
    NSLog(@"map new location: %f %f", userLocation.coordinate.latitude, userLocation.coordinate.longitude);
    location=userLocation.coordinate;

    MKCoordinateRegion region;
    region.center=location;
    MKCoordinateSpan span;
    span.latitudeDelta=0.1;
    span.longitudeDelta=0.1;
    region.span=span;

    [mapV setRegion:region animated:TRUE];
}
@end
于 2012-07-28T06:13:21.373 回答
1

好吧,首先,您永远无法确定位置管理器能够首先更新位置。更新期间可能出现错误,或者您无权访问用户的位置。

实现此 CLLocationManager 委托方法并验证错误。

-(void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error

“此方法的实现是可选的。但是,您应该实现此方法。”

于 2012-07-28T04:05:11.107 回答
1

如果您只在模拟器中运行它,您可能需要提示它更改坐标。在 Xcode 中,调试输出窗格上方有一个带有典型位置服务箭头的栏。旁边是位置的下拉列表。一旦您的应用程序运行,切换它正在模拟的位置并查看该更改是否会触发您的代码。然后在真机上进行测试。

于 2012-07-28T14:18:17.003 回答
0

就我而言,它没有进入 didChangeAuthorization。我正在尝试使用真实设备。

我从手机中删除了该应用程序并重新安装。它有效!

希望这可以帮助某人:)

于 2016-10-15T17:48:42.843 回答
0

对于斯威夫特 3

该方法已更改为:

func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation])

从:

func locationManager(manager: CLLocationManager, didUpdateLocations locations: [AnyObject]!)

注意“_”和“位置”转换为 [CLLocation] 而不是 [AnyObject]!

如果您使用旧方法,它将永远不会被调用,并且您不会收到它已更改的警告。

于 2016-12-29T20:42:44.643 回答