1

我在 UITabbarController 中添加了三个视图控制器。我正在查看 tabBarController 中的按钮视图,如下所示。

关联:http://i.imgur.com/7ugGWAu.png

左右有很大的余量,我想删除它。尽管在 iPhone 中它工作正常并且左右没有填充。这在 iPad 上可行吗?

4

1 回答 1

0

您必须将此代码放在您的 UITabBarController 的 viewWillLayoutSubviews 中。它适用于 IOS 7.0 及更高版本。

self.tabBar.itemPositioning = UITabBarItemPositioningFill;
于 2016-08-27T12:36:40.710 回答