Tagged Questions
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
...