2

是否可以增加标签栏的大小?我需要在我的一个项目中增加标签栏的高度!

4

2 回答 2

4

试试这个:

CGRect viewFrame = yourTabBar.frame;
viewFrame.size.height = 20;
self.tabBar.frame = viewFrame;
于 2012-06-11T19:13:42.490 回答
1

或者...

[self.tabBarPropertyName setFrame:CGRectMake(
    self.tabBarPropertyName.frame.origin.x,
    self.tabBarPropertyName.frame.y-(20),
    self.tabBarPropertyName.frame.size.width,
    self.tabBarPropertyName.frame.height+20)];
于 2012-06-11T20:23:05.987 回答