So in the root of my app, I have a UITabVarController (created in the storybaord). And when the user goes to one of my tabs, I have a special class that initalizes by presenting a modal view controller. So my question is: Is there a way to present this modal view inside the UITabBarController - So I will still see the other tabs, rather than being on top of them.
I was thinking something like:
self.parentViewController.tabBarController presentViewController
self.parentViewController ...
Thanks in advance.