我可以使用故事板将 UINavigationController 的视图嵌入到 UIViewController 中吗?
Can I use storyboard to embed UINavigationController's view inside a UIViewController?
我想让我的视图的顶部和底部保持静止,我只想在屏幕中央添加一个导航控制器。
多年来这一直是完美可行的,现在每个人都对故事板如此着迷,我想通过故事板做同样的事情,但这似乎是不可能的。
有可能吗?
您可以在故事板中使用容器视图。
Container View defines a region within a view controller's view
subgraph that can include a child view controller. Create an embed
segue from the container view to the child view controller in the
storyboard.
我想让我的视图的顶部和底部保持静止,我只想在屏幕中央添加一个导航控制器。
多年来这一直是完美可行的,现在每个人都对故事板如此着迷,我想通过故事板做同样的事情,但这似乎是不可能的。
有可能吗?
您可以在故事板中使用容器视图。
Container View defines a region within a view controller's view subgraph that can include a child view controller. Create an embed segue from the container view to the child view controller in the storyboard.