假设我们在UIViewController
中嵌入了UINavigationController
,UIViewController
则连接到另一个UIViewController。
第二个UIViewController
具有标准的左侧导航按钮,可“展开”到前一个UIViewController
。
我似乎无法通过情节提要向第二个UIBarButtonItem
的导航栏中添加一个右按钮(使用UIViewController
),当我尝试这样做时,该按钮最终创建了UIViewController
底部的标签栏(请参见下文,另请注意缺少左按钮)。我缺少一些技巧吗?
我可以将第二个UIViewController
嵌入到自己的UINavigationController
中,但是随后我失去了返回按钮的功能。
我知道可以在代码中添加按钮,因此如果我尝试不可能的事情,一切不会丢失。
答案 0 :(得分:1)
要在情节提要中执行此操作,您需要将UINavigationItem
放在UIViewController
上。然后,您可以添加UIBarButtonItem
。