Tagged Questions

2
votes
4answers
313 views

How do I provide a default implementation for an Objective-C protocol?

I'd like to specify an Objective-C protocol with an optional routine. When the routine is not implemented by a class conforming to the protocol I'd like to use a default implementation in its place. ...
0
votes
2answers
162 views

In Objective-C, am I allowed to override a method in a subclass that the parent used to conform to a protocol?

Example is provided below. If I set id<RandomProtocol> delegate = [[B alloc] init]; Will doingSomething of class A or class B be called? A.h @protocol RandomProtocol ...