虽然在这里找到了一个类似的问题,但它没有提供答案,至少不是针对一般问题。
我的问题是:由于CoreLocation
地理编码是速率限制的,并且我正在为其开发应用程序的(网络)服务提供了自己的后备地理编码服务,我想使用这个自定义地理编码服务,以防我达到 Apple 的速率限制。此外,我觉得避免自定义 REST API 返回的结果的自定义数据类型是完全有意义的,因此我想使用返回的数据来生成CLPlacemark
s。但是,文档指出CLPlacemark
诸如location, locality, administrativeArea
etc. 之类的属性是read-only
. 因此,我创建了一个CLPlacemark
将所需属性综合到我可以访问的私有变量上的子类,即:
// interface: (.h)
@interface CustomPlacemark : CLPlacemark
- (nonnull id)initWithLocation: (nonnull CLLocation *)location
locality: (nullable NSString *)locality
administrativeArea: (nullable NSString *)adminArea
country: (nullable NSString *)country;
@end
// implementation (.m)
@implementation CustomPlacemark
@synthesize location = _location;
@synthesize locality = _locality;
@synthesize country = _country;
@synthesize administrativeArea = _administrativeArea;
- (nonnull id)initWithLocation: (nonnull CLLocation *)location
locality: (nullable NSString *)locality
administrativeArea: (nullable NSString *)adminArea
country: (nullable NSString *)country{
self = [super init];
if(self){
_location = location;
_locality = locality;
_administrativeArea = adminArea;
_country = country;
}
return self;
}
@end
使用单元测试来测试此代码,该单元测试解析来自 JSON 文件initWithLocation: locality: administrativeArea: country:
的数据并使用数据调用我的方法,结果在EXC BAD ACCESS (code=1)
测试结束时(在}
测试方法结束时)导致地标变量指向nil
虽然先前NSLog(@"placemark: %@", customPlacemark);
的输出正确的价值观。此外,逐行执行测试显示CustomPlacemark
工作(即指向正确填充的对象)直到测试结束。对我来说,这表明我的解除分配出了CustomPlacemark
问题 - 但究竟是什么?
任何帮助是极大的赞赏!