iOS Swift tip: Getting references to container child view controllers

Pete Smith
2 min readApr 5, 2017

--

Crossposted from petethedeveloper.com

Container Views allow us to add child view controllers via Storyboard. Child view controllers are convenient as they allow us to break up a complicated view and view controller in to separate, reusable views, each with their own view controller.

As child view controllers are used to separate related functionality, it is common to need references to our child view controllers in our main parent view controller. When child view controllers are added via Storyboard, we don’t automatically get these references. We need to explicitly get these references ourselves.

One common way to get these references is via the prepare(for:sender:) method of a UIViewController. When a (parent) view controller has child view controllers, this method will be called when the parent view controller is initialized. Provided we have given each parent-to-child segue an identifier in our storyboard, we can then get our references as follows:

Above, we see that to get a reference for each child view controller involves 2 steps:

  1. We first match the segue identifier against a String
  2. We then downcast and optionally bind the destination UIViewController to our specific UIViewController subtype

Not too bad, but it does involve 2 steps, and it matches against a String (which is prone to error). Perhaps we could do better.

A better way

Rather than match against a String, and then downcast and optionally bind, how about we switch on the destination UIViewController. We can then match and cast all in one go:

Awesome! In one step, we downcast and match, without using a String. A nice, simple improvement on what we had before.

That’s it!. If you found this useful, please like/share/comment etc.

--

--

Pete Smith
Pete Smith

Written by Pete Smith

Software Engineer @Zendesk. Occasional Medium writer. Sign up here https://superpeteblaze.medium.com/membership

Responses (1)