我正在尝试调用 MKPolylines 的+ polylineWithCoordinates:count:
方法。
在这种情况下如何创建 CLLocationCoordinate2D * 对象。我已经在 CLLocationCoordinate2D 中完成了这个特定的答案,但不知道数组中有多少?
// unpacking an array of NSValues into memory
CLLocationCoordinate2D *points = malloc([mutablePoints count] * sizeof(CLLocationCoordinate2D));
for(int i = 0; i < [mutablePoints count]; i++) {
[[mutablePoints objectAtIndex:i] getValue:(points + i)];
}
MKPolyline *myPolyline = [MKPolyline polylineWithCoordinates:points count:[mutablePoints count]];
free(points);
在上述情况下,数组 mutablePoints 中有哪些类型的条目?