Using XCode storyboard to instantiate view controller that uses XIB for its design

14,838
  1. Delete the View contained by the view controller in the storyboard.

  2. Then provide the view by configuring a nib file with the same name as the view controller class. For example if the view controller class is called MyViewController, name your xib file MyViewController.xib.

EDIT Note that Swift seed 5 started breaking this technique, because it mangles the name of the .xib file it's looking for. See my answer here for workarounds: https://stackoverflow.com/a/25539016/341994 Basically this name matching was broken in iOS 8, but then Apple repented and fixed it so that it works again in iOS 9.

Share:
14,838
user1175914
Author by

user1175914

Updated on June 17, 2022

Comments

  • user1175914
    user1175914 about 2 years

    I have a UIViewController subclass that I created previously that had its controls laid out in a XIB file.

    I'd like to use this view controller in a storyboard now, but it seems although I can indicate a view controller's classname in the storyboard, I can't tell it to load the XIB.

    I'd rather not move everything from the XIB to the storyboard but keep it in its separate XIB.

    How can I get this UIViewController in the storyboard to load my XIB?