Okay there are a few things wrong here. Lets start with the error you're getting.
The source controller appears to not have a UINavigationController
associated with it. In your storyboard I would click the source view controller and then click the "Editor" menu > "Embed In" > "Navigation Controller". This will make sure that the source controller is now managed by a navigation controller.
After you do this though, you will probably still get a crash or an error of somekind. You are not allowed to push a UINavigationController
onto an existing navigation controller stack.
I would take a step back and look at what you are really trying to accomplish here. If you simply want the tab bar to go away then you can check off "Hides bottom bar on push" and then when you push the view controller, it will look as if you pushed a whole new navigation controller.
Otherwise I would question why you are trying to do a push and not a modal. When presenting a new navigation stack it is common practice to present the stack as a modal. Personally it just feels wrong to me to try and present a new stack within an existing stack.