I just started a new project running Xcode 4.2.1 and iOS5 SDK. The project is setup with ARC. I'm trying to set the AppDelegate to be the delegate for UITabBarController by doing [tabBarController setDelegate:self];
if I do that I get a warning message saying:
warning: Semantic Issue: Sending 'AppDelegate *const __strong' to parameter of incompatible type 'id<UITabBarControllerDelegate>'
Alright fair enough, I set my AppDelegate to conform to the UITabBarControllerDelegate by doing
@interface AppDelegate : UIResponder <UIApplicationDelegate, UITabBarControllerDelegate>
Great, the warning goes away.
I now get another error. In a view controller I want to get a hold of the AppDelegate so I do this: AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
but this will render a warning saying:
warning: Semantic Issue: Initializing 'AppDelegate *__strong' with an expression of incompatible type 'id<UIApplicationDelegate>'
But if I remove that my AppDelegate conforms to the UITabControllerDelegate protocol my second warning disappears.
Very strange behaviour, what gives Cocoa experts?
Try doing a typecast before assign the AppDelegate variable.
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
And , keep the UITabControllerDelegate
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With