I'm writing a small news bulletin and notification app with a group of other programmers. We're trying to be proactive about task separation and safe merging to our git repo by separating logical sections in our app (News Feed, Contacts, etc.) into entirely separate Storyboards.
This is working really well in terms of merging and task separation, but we're running into issues connecting these views to a UITabBarController (Note that the UITabBarController is also in a separate Storyboard).
I have looked at many other SO threads and tried tutorials online for connecting Views to a UITabBarController programmatically without success. Here are a few I have looked at:
UITabBarController with diffent storyboard file for each ViewController of the TabBar
Using multiple storyboards with a TabBarController
UITabBarController and Multiple Storyboards
Does anyone have any insight? Thanks!