vote up 0 vote down star

In a UIViewController I add a MKMapView to the view controlled by the controller.

- (void)viewDidLoad {
[super viewDidLoad];
CGRect rect = CGRectMake(0, 0, 460, 320);
map = [[MKMapView alloc] initWithFrame:rect];
map.delegate = self;
[self.view addSubview:map];
 }

Later in the controller I have

- (void)mapViewDidFinishLoadingMap:(MKMapView *)mapView
{
     NSLog(@"done.");
}

Done never gets printed. None of the other delegate methods get called either like mapView:viewForAnnotation: I use a MKMapView in an another app, but this seems to happen on any new application I make. Has anyone else seen this behavior?

EDIT:

The problem seems to be when UIViewController is made the delegate of the MKMapView, a direct subclass of NSObject seems to work okay. I can work around like this, still seems very odd since I've done it before.

flag

1 Answer

vote up 0 vote down

maybe quite obvious, but just checking:

Have you made sure your viewcontroller declaration is correctly done. Something like:

@interface YourViewController : UIViewController <MKMapViewDelegate>
link|flag
Indeed I have. I'm wondering if it has anything to do with the new way XCode 3.2 and the SDK work together. This is the first Mapkit I have tried starting since 10.6 came out. – criscokid Sep 4 at 15:07

Your Answer

Get an OpenID
or

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