I have asked this before, but the more I look at other code examples the more I see differences in layout. Usually I try and put the call to super at the start (if its a cre
I'd say that it doesn't usually matter, unless:
viewDidLoad
usually wouldn't be doing, as that's the init
method's job), in which case the super
call should be at the start.super
call should be at the end.super
call at all (but the pattern is similar), and you'd put the call at the end.I may have missed some important cases, though.