The Explore menu in the Apple App Store allows you to make a selection from a UITableView and then it segues to a new view while showing the previous selection at the top of the screen. It's the best example of mobile breadcrumbs I've ever seen. Here's what it looks like in action:
On this screen I click "Consumer Products" and that shows me the next screen. Without taking me out of the view.
You're able to press on any of the breadcrumbs and segue back to that view.
Can you please show me in Objective-C, how you would achieve a segue like this?
(The most important part of the segue is the breadcrumb functionality at the top of the screen.)
Thanks!