Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
导航控制器是否有底栏?如果是这样,如何设置它?
我希望有一个全局底栏,而不必将其添加到每个视图中。
是否可以使用工具栏并将其添加到导航控制器,以便每个视图都不需要添加相同的栏?
如果您UINavigationController在 中实例化AppDelegate,您可以调用
UINavigationController
AppDelegate
[self.navigationController setToolbarHidden:NO]
从 ViewController 向工具栏添加项目
[self.navigationController setToolbarItems:items animated:NO];
其中 items 是UIBarButtonItems的数组
UIBarButtonItem