结构体存储在NSArray中的方式

//转换为NSValue
NSValue *value = [NSValue valueWithBytes:&locCoord objCType:@encode(CLLocationCoordinate2D)];       

//转换回结构体

 CLLocationCoordinate2D coord;
 [value getValue:&coord];

你可能感兴趣的:(存储)