修改tabbar的高度
继承UITabbarController,然后重写下面的方法
- (void)viewWillLayoutSubviews {
self.tabBar.height = 60;
self.tabBar.y = self.view.height - 60;
}
继承UITabbarController,然后重写下面的方法
- (void)viewWillLayoutSubviews {
self.tabBar.height = 60;
self.tabBar.y = self.view.height - 60;
}