I am loading a viewController via a storyboard segue and I want to add a UIImageView to the controller programmatically (instead of creating it in the storyboard). Usually when working without a Storyboard or NIB I would do this in loadView: is there an appropriate place for this when using storyboards or does the storyboard drop you in a bit late in the day for that?
EDIT: Updated error regarding NIB and loadView:
If you’re using a NIB you shouldn’t really be adding anything using
loadView:. You should be usingviewDidLoad:. This also works when using Storyboards.