Hi,
some of my classes are gowing very big. I would like to use categories for code management. I would also like to override some methods like viewDidLoad inside the category and continue its implementation from there.
Now in inheritance we can call [super viewDidLoad] to see to it that the actualy implementation of viewDidLoad is always called before the trailing part of the method is executed in out subclass.
How can we ensure this in a category?