Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在屏幕上显示了一个导航控制器,我想让另一个视图控制器的视图位于当前导航控制器的后面(供以后使用) 我该怎么做?
谢谢你
如果你想隐藏它
yourView.hidden=YES;
如果您想更改视图排列,请将您想要的子视图放在前面
[self.view bringSubViewToFront:yourView];
或者,仅在需要时创建它