Cover UITableViewController view with contents of another nib
I have a UITableViewController that I need to cover 开发者_如何学运维with another nib in some situations
Whats a good way to do this?
You might want to check out the class UINavigationController. It helps you manage a stack of view controllers, with only the top one visible.
Depending on what you're attempting to do, you could use presentModalViewController:animated: to slide up a new view and cover your table. Then there is William's solution which would be to create a UINavigationController which will enable you to push and pop views into a stack.
精彩评论