I get the following error warning:

Passing 'MyCLController *__strong' to parameter of incompatible type 'id<CLLocationManagerDelegate>'

... on this line:

self.locationManager.delegate = self;

If I remove the line the whole location update process fails. So it is import but also includes an error.

The location updates work smoothly but I have no clue how to get rid of this message ...

Must have something to do with the "new" Xcode 4 ...

Any ideas?

Thank you!

link|improve this question

Has more to do with the fact you have ARC turned on than with XCode 4. Can you show in your original question how you have your delegate declared in your .h interface file? – Michael Dautermann Nov 27 '11 at 13:30
feedback

1 Answer

up vote 3 down vote accepted

You need to include the delegate protocol in your interface definition:

@interface MyCLController : NSObject <CLLocationManagerDelegate>
...
@end
link|improve this answer
Jep. That was it. Thanks a ton! :) – Darwin Nov 27 '11 at 13:47
feedback

Your Answer

 
or
required, but never shown

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