码迷,mamicode.com
首页 > 其他好文 > 详细

改变tabbar的高度做法

时间:2015-08-13 13:48:31      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

1 UITabBarController *tabBarController =[[UITabBarController alloc] init];
2     CGRect frame = self.window.bounds;
3     tabBarController.tabBar.frame = CGRectMake(0, CGRectGetHeight(frame) - 98, CGRectGetWidth(frame), CGRectGetHeight(frame));
4     UIView *transitionView = [[tabBarController.view subviews] objectAtIndex:0];
5     frame.size.height = CGRectGetHeight(frame) - 98;
6     transitionView.frame = frame;

 

改变tabbar的高度做法

标签:

原文地址:http://www.cnblogs.com/dagon/p/4726767.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!