我正在尝试以编程方式从UINavigationItem
的中心位置(视图控制器可以添加自己的按钮)为整个应用程序设置UINavigationController
的内容,例如:
viewDidLoad
的 UINavigationController
方法:
UINavigationItem *item = [[UINavigationItem alloc] initWithTitle:@"Login"];
[self.navigationBar pushNavigationItem:item animated:NO];
self.navigationItem.topItem.leftBarButtonItems = [[NSArray alloc] initWithObjects: filterBtn, editBtn, nil];
self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects: userBtn, infoBtn, mapsBtn, nil];
但是,当从pushViewController
调用UINavigationController
时,呈现的UINavigationItem
会设置为默认值,其标题等于场景名称。
[self pushViewController:viewController animated:NO];
在不致电pushViewController
的情况下,我可以看到我的自定义UINavigationItem
。
问题可能是:
我使用storyboard
来实例化视图控制器:UIViewController *viewController = [self.storyboard instantiateViewControllerWithIdentifier: screen];
然而,我应该使用push
代替[self presentViewController:viewController animated:NO completion:nil]
,此方法完全隐藏了导航栏
解决方法可能只是提出UIView
,但我现在暂时避免使用它。
我在这里做错了什么?
答案 0 :(得分:1)
每当按下UIViewController
时,导航项目(左,中,右)都会被替换。
如果尚未设置UIViewController
的自定义项目(左,中,右),导航控制器将推送默认项目。
在您的情况下,您可以做的是,在UINavigationControllerDelegate
中实施UINavigationController
并实施此方法navigationController(UINavigationController, willShow: UIViewController, animated: Bool)
方法。您可以在推送UIViewController
之前分配默认导航项。并且还可以检查是否已设置任何自定义项目。
func navigationController(_ navigationController: UINavigationController, willShow viewController: UIViewController, animated: Bool) {
if viewController.navigationItem.leftBarButtonItem == nil { // viewController.navigationItem.leftBarButtonItems
// assign default item
}
if viewController.navigationItem.rightBarButtonItem == nil { // viewController.navigationItem.rightBarButtonItems
// assign default item
}
if viewController.navigationItem.titleView == nil {
// assign default item
}
}
您还可以查看官方文档here。请参阅左项和自己的字。
部分选项2
创建BaseViewController
并使用BaseViewController
继承所有视图。然后在BaseViewController
中,您可以设置所有默认导航项。
class BaseViewController : UIViewController {
override func viewDidLoad() {
self.navigationItem.leftBarButtonItems = [[NSArray alloc] initWithObjects: filterBtn, editBtn, nil];
self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects: userBtn, infoBtn, mapsBtn, nil];
}
}