Say inherited from a class, I can invoke [self someMethod]
if someMethod is rewritten; I can also invoke [super someMethod]
.
What if I use composition instead. Say I have porperty
@propery (nonatomic, strong) XXXController xxController;
Use [self.xxController someMethod]
to invoke someMethod, but how to invoke xxController
's super version someMethod?