【问题标题】:How to increase the size of tab bar?如何增加标签栏的大小?
【发布时间】:2012-06-11 19:08:12
【问题描述】:

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

【问题讨论】:

    标签: iphone xcode4.3


    【解决方案1】:

    试试这个:

    CGRect viewFrame = yourTabBar.frame;
    viewFrame.size.height = 20;
    self.tabBar.frame = viewFrame;
    

    【讨论】:

      【解决方案2】:

      或者...

      [self.tabBarPropertyName setFrame:CGRectMake(
          self.tabBarPropertyName.frame.origin.x,
          self.tabBarPropertyName.frame.y-(20),
          self.tabBarPropertyName.frame.size.width,
          self.tabBarPropertyName.frame.height+20)];
      

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2020-11-17
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2015-08-08
        相关资源
        最近更新 更多