So I am doing this tutorial on how to create your own slide-out menu:
https://www.raywenderlich.com/78568/create-slide-out-navigation-panel-swift
The tutorial states that the view controllers can be swapped out for your own. So I incorporated it into my own app with adjustments.
Only problem is, this code below is conflicting with my navigation controller which is the initial view controller. The slide out menu works great but the app loads without any other content. I imagine the rootViewConroller is conflicting the initial view controller but I tried one without the other and a variety of other things with no luck.
Any help would be appreciated, thanks in advance!
window = UIWindow(frame: UIScreen.mainScreen().bounds)
let containerViewController = ContainerViewController()
window!.rootViewController = containerViewController
window!.makeKeyAndVisible()