I have tab controller created through storyboards with a custom implementation (simple buttons and labels) with hidden default bar. This all works as expected and can navigate the various views. However on a couple of my views I need to use a UIScrollView but would like the tab bar controls moved to the bottom on the scrollview, you would have to scroll to bottom to access them. How would I implement such a configuration? I am using XCode 4.3, ARC and Storyboards.
I have tab controller created through storyboards with a custom implementation (simple buttons and
Share
You would have to create your own implementation of a UIView containing tabs and put that at the bottom of your UIScrollView.
The UITabBarController must be the root of your window. In other words, a UIViewController inside of a UITabBarController can contain a UIScrollView, but you cannot put a UITabBarController inside of another UIViewController (or within a UIScrollView).
From the UITabBarController Class Reference: