我试图找到一种直接的方法来将MKCoordinateSpan放入一个数组,而不将其分解为经纬度,然后将其存储在NSArray中。不知道是否有这种方法。

最佳答案

尝试这个:

MKCoordinateSpan currentSpan;
currentSpan = ...; // Set the span to somethinf
NSValue *spanVal = [NSValue valueWithBytes:&currentSpan objCType:@encode(MKCoordinateSpan)];
...
MKCoordinateSpan currentSpanBack;
[spanVal getValue:&currentSpanBack];

10-08 17:48