vote up 6 vote down star
4

I have an object (a UIViewController) which may or may not conform to a protocol I've defined.

I know I can determine if the object conforms to the protocol, then safely call the method:

if([self.myViewController conformsToProtocol:@protocol(MyProtocol)]) {
    [self.myViewController protocolMethod]; // <-- warning here
}

However, XCode shows a warning:

warning 'UIViewController' may not respond to '-protocolMethod'

What's the right way to prevent this warning? I can't seem to cast self.myViewController as a MyProtocol class.

Update

Andy's answer below is close, but includes an unneccesary '*'. The following works:

[(id<MyProtocol>)self.myViewController protocolMethod];
flag

1 Answer

vote up 6 vote down

You can cast it like this:

if([self.myViewController conformsToProtocol:@protocol(MyProtocol)])
{
    id<MyProtocol>* p = (id<MyProtocol>*)self.myViewController;
    [p protocolMethod];
}

This threw me for a bit, too. In Objective-C, the protocol isn't the type itself, so you need to specify id (or some other type, such as NSObject) along with the protocol that you want.

link|flag
Ah, cool, thanks. I just checked and saw that casting it as (id) works too. Is that bad form? – Ford Mar 6 at 4:03
If you cast it as id<MyProtocol> then the compiler will warn you if you use methods that aren't defined in that protocol. – dreamlax Mar 6 at 4:09
@dreamlax - This is how the compiler does type checking against protocols. See developer.apple.com/documentation/Cocoa/… for more info. – Andy Mar 6 at 17:50
@Ford - it would be better to use the the protocol specifically, since that way the compiler can perform some type checking for you. – Andy Mar 6 at 18:56
@Andy, I don't think you need the '*' since 'id' is already a pointer. So: id<MyProtocol> p = (id<MyProtocol>)self.myViewController; [p protocolMethod]; Or just: [(id<MyProtocol>)self.myViewController protocolMethod]; – Ford Mar 7 at 1:43

Your Answer

Get an OpenID
or

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