我在 Storyboard 的 Interface Builder 中有一个 UINavigationController 。我在第一个 UIViewController 中添加了两个 UIBarButtonItems 。它们显示得很好。如何将它们添加到导航到的第二个 UIViewController 中?在那个 View Controller 上,我只看到返回按钮。
当我尝试将 UIBarButtonItem 拖到第二个 View Controller 的顶部时,由于某种原因,该按钮最终位于场景的底部。运行应用时不显示。
编辑:我应该提到我知道如何在代码中执行此操作,但在 Interface Builder 中不知道。
Best Answer-推荐答案 strong>
要添加有关我对导航项的评论的更多信息:
这是一个简单的项目,其中 UIViewController 嵌入在 UINavigationController 中。第二个 UIViewController 可以通过 Next 按钮按下。
如果您选择下一个按钮,您可以在层次结构中看到该按钮嵌入在 Right Bar Buttons Items 组中,该组嵌入在 First 对象中。实际上,First 是一个 UINavigationItem 在嵌入到导航 Controller 时自动添加到您的 View Controller 中。
但是第二个 View Controller (被推送的)没有这个导航项,因为它没有直接嵌入到导航 Controller 中。只需将其从对象库拖放到您的 View Controller 。
关于ios - 在 Interface Builder 中添加 UIBarButtonItem 到导航的 UIViewController?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/35620633/
|