IOS中UITabBar的常用設定

來源:互聯網
上載者:User

UITabBar十分常用,它能實現多個頁面的快速切換,而且看起來簡單實用。

假設我這有多個 已經初始化好的viewController,然後需要將它們加入到TabBarController中,並把其設定為根視圖

NSArray *views = [[NSArray alloc] initWithObjects:test, time, test1, test2, test3, test4, nil];        UITabBarController *tbc = [[UITabBarController alloc] init];  tbc.viewControllers = views;        self.window.rootViewController = tbc;

設定好以後看一下TabBar的效果圖

這裡的每個View的Item主要有這麼幾個屬性,標題title,圖片image,以及time右上的圓圈圖 標,顯示的是badgeValue。可以在覆寫view的初始化方法的時候設定它的tabBarItem屬性。

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil  {      self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];      if (self) {                  self.tabBarItem.title = @"time";          self.tabBarItem.image = [UIImage imageNamed:@"time.png"];          self.tabBarItem.badgeValue = [NSString stringWithFormat:@"%d", 3];      }      return self;  }

再看一下效果圖的最右邊,它是More,這是因為TabBar預設最多顯示5個Item,多餘的會自動 加到More中去,點擊More之後會彈出一個NavigationBar,上面有一個Edit按鈕

點擊Edit

查看本欄目更多精彩內容:http://www.bianceng.cnhttp://www.bianceng.cn/OS/extra/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.