我对iOS开发完全不熟悉所以我可能做错了,但是我有一个类我正在使用的类来获取我希望作为通用类的坐标gps数据,我可以在很多应用程序中重用它。我的问题是从gps获取数据以在其他应用程序中正确显示。
以下是我的GPS类头文件:
#import <Foundation/Foundation.h>
#import <CoreLocation/CoreLocation.h>
@interface LocationAwareness : NSObject <CLLocationManagerDelegate> {
CLLocationManager *locationManager;
}
@property(copy) NSString *longitude;
@property(copy) NSString *latitude;
@end
以下是实施:
#import "LocationAwareness.h"
@implementation LocationAwareness
@synthesize longitude;
@synthesize latitude;
- (id)init {
locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.distanceFilter = kCLDistanceFilterNone; // whenever we move
locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters; // 100 m
[locationManager startUpdatingLocation];
return self;
}
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
// Stops updating location if data has been updated within 10 minutes
if ( abs([newLocation.timestamp timeIntervalSinceDate: [NSDate date]]) < 600) {
[locationManager stopUpdatingLocation];
float latitudedata = newLocation.coordinate.latitude;
latitude = [NSString stringWithFormat:@"%f", latitudedata];
float logitudedata = newLocation.coordinate.longitude;
longitude = [NSString stringWithFormat:@"%f", logitudedata];
}
}
@end
现在我似乎无法找到告诉我如何在另一个项目中获取纬度或经度属性的任何地方。我已导入标头,并尝试将LocationAwareness.latitude存储到我可以使用的变量中,但我存储的所有内容最终都是空白的。当我开始我的主类并且aloc初始化一个locationawareness对象时,gps会激活,所以我认为它的工作原理但我似乎并不了解它是如何工作以使一切井然有序的。我一直在网上搜索几个小时。任何人都知道我做错了什么?
答案 0 :(得分:3)
嗯,这可能会或可能不会导致问题(很可能),但主要问题是你的init方法。
开头应该是:
self = [super init];
if (self) {
// Do your initializing as you did above.
}
return self;
修改强>
我将您的代码添加到项目的更新中,并且运行良好。
为了使用它,您应该执行以下操作:
LocationAwareness *loc = [[LocationAwareness alloc] init];
// Give it some time to start updating the current location and then
// in a different function:
NSLog(@"%@", loc.latitude);
编辑2
无论您在何处使用此属性,都需要声明一个存储它的属性,以便您可以创建一次并多次引用它。为此,请使用以下代码:
在要使用此对象的对象的标题中,将其与其他属性一起添加:
@property (nonatomic, assign) LocationAwareness *location;
然后,在实现文件(.m文件)的顶部,您应该看到其他@synthesize行,添加以下内容:
@synthesize location;
然后,根据上面的示例创建您要使用的实际位置实例:
self.location = [[LocationAwareness alloc] init];
现在给它一些时间来弄清楚你的位置并开始提供更新。然后你可以打印这样的位置:
NSLog(@"%@", self.location.latitude);