【发布时间】:2014-02-03 18:47:22
【问题描述】:
我有一个应用程序,它有一个标签栏,在大多数ViewControllers 中都有显示。问题是它没有显示在我通过这段代码呈现的viewController 中。
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:songsViewController];
[self presentViewController:navigationController animated:YES completion:nil]
我使用presentViewController 而不是pushViewcontroller,因为我想在此视图中自定义navigationBar。
如何展示我使用 storyboard 创建的标准标签栏?
【问题讨论】:
标签: ios objective-c uitabbar presentviewcontroller