6

我正在尝试创建一个帮助类来轻松获取任何其他类中手机的坐标。我遵循了一个教程,其中UIViewController实现了<CLLocationManagerDelegate>并且它有效。我尝试在一个简单的 中做同样的事情NSObject,但是我的代表不再被调用。

这是我的代码:

PSCoordinates.h

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

@interface PSCoordinates : NSObject <CLLocationManagerDelegate>

@property (nonatomic, retain) CLLocationManager* locationManager;


@end

PS坐标.m

#import "PSCoordinates.h"

@implementation PSCoordinates

- (id) init {
    self = [super init];

    if (self) {
        self.locationManager = [[CLLocationManager alloc] init];
        if ([CLLocationManager locationServicesEnabled])
        {
            self.locationManager.delegate = self;
            self.locationManager.desiredAccuracy = kCLLocationAccuracyBest;
            self.locationManager.distanceFilter = 100.0f;
            NSLog(@"PSCoordinates init");
            [self.locationManager startUpdatingLocation];
        }
    }
    return self;
}

- (void)locationManager:(CLLocationManager *)manager
    didUpdateToLocation:(CLLocation *)newLocation
           fromLocation:(CLLocation *)oldLocation
{
    NSLog(@"Géolocalisation : %@",[newLocation description]);
}

- (void)locationManager:(CLLocationManager *)manager
       didFailWithError:(NSError *)error
{
    NSLog(@"Géolocalisation (erreur) : %@",[error description]);

}


@end

我打电话给它

PSCoordinates * coordinates = [[PSCoordinates alloc] init];

按下按钮时。init 正在工作,因为我可以看到 NSLog PSCoordinates init

我发现人们有同样问题的其他话题,但没有一个答案能解决它。

您的帮助将不胜感激。

4

1 回答 1

13

在您的班级中将“PSCoordinates * 坐标”设为全局。它会工作:)

于 2013-05-07T14:36:22.917 回答