I am updating an app that was initially built with a single view controller. That view controller is now only called when the user presses the Add button in the nav bar on either screen of the tab bar controller. I have updated the tab bar controller to be the initial view controller per this post, however removing the "is initial view controller" from the original view controller is causing the build to fail. I am receiving the following error:
/* com.apple.ibtool.errors */
: error: TabBarStoryboard.storyboard references the initial view controller of Main.storyboard, but no designated entry point was found.
How can I tell Xcode that the tab bar view controller is the view controller to load when the app launches? Here is a link to the repo.