I have a Tab Bar-based application with a navigation controller for each tab. One of the tabs is titled "People" (for sake of example) which loads PeopleViewController, which lists people. When a person is pressed, it pushes PersonViewController to view that person. Since there are many tasks associated with each person, I'd like PersonViewController to override the tab bar with new actions, and re-show the original tab bar when the view is popped. I recall the Tweetie 2 app (now Twitter) doing this. How could I best implement this? Thanks!
EDIT: I've been googling this like mad and have yet to come up with a solution. If anyone can help me out I would very grateful!