Slide 20
Slide 20 text
Notes on Obj-C inheritance
It’s like (if not the same) as Ruby.
if you want to override a base method, simply name
it the same, have the same return type and params.
No need to mark things virtual, or use the new
keyword, override, etc.
Inheritance is everywhere in Objective-C/Cocoa,
where as in C# interfaces and Composition are
encouraged.