自定义TabBar的高度:(无论横屏还是竖屏都以竖屏为准,之前就改为横屏的设置出错,找了好久才找到这个问题)
tabBar = [[UITabBarController alloc] init];// 改变tabBarController高度 tabBar.tabBar.frame=CGRectMake(0, 426, 320, 34); //34为新定义的tabbar的高度UIView *transitionView = [[tabBar.view subviews] objectAtIndex:0];transitionView.frame=CGRectMake(0, 0, 320, 426);