2

我想将 NSCoding 支持添加到 c 结构数组中。具体来说,这是针对 的子类MKPolyline,即这是我必须使用的:

@property (nonatomic, readonly) MKMapPoint *points;
@property (nonatomic, readonly) NSUInteger pointCount;

+ (MKPolyline *)polylineWithPoints:(MKMapPoint *)points count:(NSUInteger)count;

我找到了一个关于如何编码单个struct的好答案。例如

NSValue* point = [NSValue value:&aPoint withObjCType:@encode(MKMapPoint)];
[aCoder encodeObject:point forKey:@"point"];

.... 

NSValue* point = [aDecoder decodeObjectForKey:@"point"];
[endCoordinateValue getValue:&aPoint];

有没有一种很好的方法可以将它应用到 ac 数组 - 或者我只需要遍历 c 数组?

4

1 回答 1

4

注意:这种方法只有在数据不在具有不同“字节序”的处理器之间传递时才有效。从 iOS 到 iOS 应该是安全的,当然如果只在给定的设备上使用的话。

您应该能够将 C 数组的内存加载到一个NSData对象中,然后对该对象进行编码NSData

MKMapPoint *points = self.points;
NSData *pointData = [NSData dataWithBytes:points length:self.pointCount * sizeof(MKMapPoint)];
[aCoder encodeObject:pointData forKey:@"points"];

更新:取回数据:

NSData *pointData = [aCode decodeObjectForKey:@"points"];
MKMapPoint *points = malloc(pointData.length);
memcpy([pointData bytes], points);
self.points = points;
于 2013-02-16T18:50:21.137 回答