IBOutlet properties does not update when using prepareForSegue method

I’m a little late coming into this answer, but I ran into this issue recently, and the reason for this would have been obvious if we were still instantiating things manually instead of letting the storyboard handle it. It so happens to be the same reason you never manipulate the view when manually instantiating view controllers: the segue’s destinationViewController has not called loadView: yet, which in a storyboard runs through deserializing all the view objects from the associated nib.

An extremely simple way to see this in action:

  1. Create a two ViewController Scenes (ViewController1 and ViewController2)
  2. Add a button to ViewController1 and an action segue from the button to ViewController2
  3. Add a subview to ViewControler2, and an IBOutlet to that subview
  4. In prepareForSegue: of ViewController1, try to reference that subview outlet of ViewController2 – you’ll find it’s nil and its frame/bounds are null.

This is because ViewController2’s view has not yet been added to view stack, but the controller has been initialized. Thus, you should never try to manipulate ViewController2’s view in prepareForSegue: or otherwise anything you do will be lost. Reference Apple’s ViewController Programming Guide here for the lifecycle: https://developer.apple.com/library/ios/featuredarticles/ViewControllerPGforiPhoneOS/ViewLoadingandUnloading/ViewLoadingandUnloading.html

The accepted answer here is forcing loadView to run in prepareForSegue: by accessing the .view property of the destination which is why things show up out of order, and will have unknown / difficult to reproduce results if you’re trying to do any kind of view manipulation in viewDidLoad to account for any data loads, because without having the view loaded to the viewStack, any references to the parent view for frame references will be nil.

TL;DR; –
If you have data that needs to be passed like in the OP’s case, set it using public properties on the destination, and then in viewDidLoad of the destination controller, load that data into the view’s subviews.

Edit:

Similar question here – IBOutlet is nil inside custom UIView (Using STORYBOARD)

You may also want to utilize viewDidLayoutSubviews: for any subview manipulation.

Leave a Comment