2
是否可以增加標籤欄的大小?我需要在我的一個項目中增加標籤欄的高度!如何增加標籤欄的大小?
是否可以增加標籤欄的大小?我需要在我的一個項目中增加標籤欄的高度!如何增加標籤欄的大小?
試試這個:
CGRect viewFrame = yourTabBar.frame;
viewFrame.size.height = 20;
self.tabBar.frame = viewFrame;
或...
[self.tabBarPropertyName setFrame:CGRectMake(
self.tabBarPropertyName.frame.origin.x,
self.tabBarPropertyName.frame.y-(20),
self.tabBarPropertyName.frame.size.width,
self.tabBarPropertyName.frame.height+20)];