I've been given a design with the following workflow:
- User logs into an app
- Upon successful login the user sees a tableview with data rows
- Upon clicking a data row the user is taken to a view controller with a tabbed inteface. Each view controller in the tabbed interface provides a deep dive of an aspect of the data shown in the tableview.
- From any tab the user can push the back button and be taken back to the tableview.
Based on this description it seems to me that the app needs a navigation controller root view controller for login and the tableview, then upon clicking on the table row the app needs to utilize a tabbar controller for the deep dive of the data.
I cannot seem to add a UITabBarController to a Navigation Controller using a storyboard. Additionally I've found other SO posts that ask a similar question, but none of the answers provided seem current, or address this workflow using current (iOS7/8) best practices. Is there a way to accomplish this workflow? If there is not, is there a concise explanation I could use to inform the designer and stakeholders?