gotta a question regarding how to navigate inside the UITableView. Here is the situation: I have a popover which is a UITableView, and select a cell simply navigate to another view(detail view). What I need is on my detail view, after I select a cell, I want to navigate back to the previous view. I tryied
– popViewControllerAnimated:
–popToRootViewControllerAnimated:
– popToViewController:animated:
and they did navigate back. However, the popover got dismissed after that. So I am wondering if anybody knows how to navigate back without effect the popover. Thanks a lot.
popViewControllerAnimated: is the correct solution. That shouldn’t hide the popover though – are you sure you’re not hiding the popover with some other code?