Say I have a class called Item. What is the superclass of NewsItem and TwitterItem.
If I want to create some NewsItem, I have to use (inside the constructor)
self = [super init];
If so, why? In Java / C #, I would just do
NewsItem n = new NewsItem();
I don't need to do anything with superclasses in Java / C #. I just can’t understand this.
source share