UIToolbar on each page of UINavigationController

2019-03-15 13:07发布

I have an application which runs on a UINavigationController. Now I would like to add a UIToolbar element to the bottom of each screen. The Toolbar on the bottom should the be customizable for the ViewController that is currently being displayed. My first idea was to simply add the toolbar to the navigationController view and tag it, in the viewController I thought I would then be able to retrieve the UIToolbar element. I have the following code:

In my AppDelegate:

// Get instance of Toolbar  (navController is an instance of UINavigationController and TOOLBAR_TAG a constant)
UIToolbar *toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 440, 320, 40)];
toolbar.tag = TOOLBAR_TAG;
[navController.view addSubview:toolbar];

In my viewController I tried this:

UIToolbar *toolbar = [self.navigationController.view viewWithTag:TOOLBAR_TAG];
toolbar.barStyle = UIBarStyleBlack;

Yet this gives me an error saying that toolbar in my case is a "UILayoutContainerView" object, not an UIToolbar object. Hence this idea seems to be a dead end.

How did others solve this issue?

3条回答
戒情不戒烟
2楼-- · 2019-03-15 13:43

To easily display the UINavigationController bottom toolbar, you can click on the "Show Toolbar" checkbox which is reachable from the inspector with "Navigation Controller" object selected. I hope this may help :)

查看更多
仙女界的扛把子
3楼-- · 2019-03-15 13:44

UINavigationController already has a toolbar. Just use

[self.navigationController setToolbarHidden:NO];

in the topmost view controller and

[self setToolbarItems:items];

in all your view controllers, where items is an NSArray of that view controller's toolbar items.

EDIT: As for why your solution isn't working: your TOOLBAR_TAG is probably not unique, that's why you're getting another subview. But as I said, you should use the included toolbar anyway.

查看更多
兄弟一词,经得起流年.
4楼-- · 2019-03-15 13:47

From a design perspective I would not recommend this UNLESS you know the toolbar will be present for each view in the stack. The second you start hiding/showing the toolbar for different views in the stack you will see that that animation (toolbar slides out/in with views) doesn't animate like you expect.

If you need toolbars for specific views put them in those views, since toolbar are contextual to the view, not to the nav stack as a whole.

查看更多
登录 后发表回答