Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is my crash

enter image description here

The crash address is either 0x00000000 or 0x00000001 or sometimes even 0x00000002

enter image description here

enter image description here

Im getting a crash while woking with Map Kit. I am adding a large amount of overlays to the map from a database. This crash looks like its related to drawing the actual overlay onto the map. I am adding MKPolyLines in the usual way.

MKPolyline* pathOverlay = [MKPolyline polylineWithCoordinates:locations count:pathIndex];
free(locations);
[overlays addObject:pathOverlay];
...
[self.mapView addOverlays:overlays];

Does anyone have any suggestions? I can post more code if needed.

Thanks.

share|improve this question
Iv checked for zero points NSAssert(latitude != 0.0 && longitude != 0.0... also for identical adjacent points. Neither have worked. – Robert Dec 29 '12 at 16:56
Also posted this in the Apple developer forums devforums.apple.com/thread/176674?tstart=0 – Robert Dec 30 '12 at 0:38

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.