https://github.com/melling/ios_topics/blob/master/README.mdI usually use the first ViewController in Main.storyboard.
Here's a no Nib example:
https://github.com/melling/ios_topics/tree/master/NoNibAllCo...
Usually, you'll just have lines like this:
let vc = ViewController()
self.navigationController?.pushViewController(vc, animated: true)
Make sure your first controller is embedded in a NavigationController or that push won't work.