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.

I'm trying to remove annotaenter code heretion some a MKMapView but am crashing on this line:

[self.mapView removeAnnotation:p];

p is an object that implements the MKAnnotation protocol and already has an annotation on that map.

This is the message I'm getting when I crash:

objc[46534]: FREED(id): message release sent to freed object=0x4319640 Program received signal: “EXC_BAD_INSTRUCTION”. (gdb)

The backtrace looks like so:

(gdb) bt
#0  0x951424b4 in _objc_error ()
#1  0x951424ea in __objc_error ()
#2  0x951407dc in _freedHandler ()
#3  0x000786f6 in -[NSConcreteMapTable removeObjectForKey:] ()
#4  0x00003970 in -[MapViewController horizontalPickerVC:toggleGroup:enabled:] (self=0x4322a00, _cmd=0x24349, picker=0x43248c0, groupId=3, enabled=0 '\0') at /Users/me/Desktop/FanMapper/fanmapper/Classes/MapViewController.m:183

Any ideas?

share|improve this question

1 Answer

up vote 1 down vote accepted

Turns out my MKPinAnnotationView was set to autorelease.

share|improve this answer
This was actually my problem as well, thanks :) +1 – goddfree Jun 6 at 4:12

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.