iphone - getting the details to show above an annotation -
iphone - getting the details to show above an annotation - ok have annotations showing fine can't figure out how little dialogue box thing appear above it. when create annotation, this: annotation *annot = [[annotation alloc] init]; annot.coordinate = touchmapcoordinate; annot.title = @"location"; annot.subtitle = @"the address"; [self.mapview addannotation:annot]; again, works find doesn't show little dialogue box. i understand has delegate. downloaded apple's mapcallouts illustration code , couldn't figure out how contacted delegate annotations. here annotations class annotation.h #import <foundation/foundation.h> #import <mapkit/mapkit.h> @interface annotation : nsobject <mkannotation>{ cllocationcoordinate2d coordinate; nsstring *title; nsstring *subtitle; } @property (nonatomic) cllocationcoordinate2d coordinate; @property (nonatomic, copy) nsstring *title; @property (nonatomic, copy) nsstring...