`
修博龙泉
  • 浏览: 318324 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

tabBarController 自定义高度

 
阅读更多
    self.tabBarController = [[[UITabBarController alloc] init] autorelease];
   
    //自定义tabBarController高度
    self.tabBarController.tabBar.frame = CGRectMake(0, self.window.frame.size.height-44, 320, 44);
    UIView * transitionView = [[self.tabBarController.view subviews] objectAtIndex:0];
    //transitionView.frame.size.height = 416;
    //更改主VIEW高度,防止出现缝隙
    [transitionView setFrame:CGRectMake(0, 0, 320, 436)];
   
    self.tabBarController.viewControllers = @[viewController1, viewController2,viewController3, viewController4,viewController5];
    self.window.rootViewController = self.tabBarController;
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics