开发者

Cover UITableViewController view with contents of another nib

开发者 https://www.devze.com 2023-01-04 17:40 出处:网络
I have a UITableViewController that I need to cover 开发者_如何学运维with another nib in some situations

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消