I am trying to switch between multiple different views using a UISegmentedControl. I found a really good example to do this in:
Red Artisan - Ruby on Rails Specialists - Melbourne, Australia - Switching Views with a UISegmentedControl - Revisited
However, I need to use a UITabbarController in my app. So the navigation controller is not available for me in the app delegate. Is there any other way to switch views in a UITabbarController using UISegmentedControl?
This is the structure of my application as I need it to be:
Media (Tab Bar Item)
- Lessons (Table view)
- Detail view
- Videos (Table view)
- Detail view
I wanted to make the segmented control switch between lessons and videos.
Thank you in advance for all your help!