I’m trying to access the data points of a MKPolygon. There is a (read-only) property of MKMultiPoint class. The doc states that this will return the ‘array of points associated with the shape’. However, the return type is MKMapPoint. This is actually one single point of which I can read x and y values. Where are all the other data points? I guess I’m confusing things here. Any help?
Thanks, pawi
Found it myself: MKMapPoint point = region.points[i];