iOS tabbarviewControll的簡單使用設定

來源:互聯網
上載者:User

1 一種是載appdelegate裡面設定tabbarviewcontroller,然後利用self。view controllers添加別的view con
2 一種是繼承於tabbarviewcontroller的類,然後在裡面添加VC類,
一種簡單的設定tabbar的背景色,還有items的字型和圖片,就是ps畫出一個長寬320 高,49的tabbar背景圖片,然後把分成幾塊把items 的內容和圖片都ps上去,這樣可以簡單的設定tabbar的背景,
[self.tabBar setBackgroundImage:[UIImage imageNamed:@"tab_bg.png"]];
還有就是設定點擊items時動畫的產生,簡單的方法就是設定一個image圖片,添加到tabbar上面,然後添加,button,迴圈一個button載tabbar上面,利用button 的點擊事件變動image 的位置
代碼

UIImageView *_selectedTag = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"tabbar_tag.png"]] autorelease];
[_selectedTag setFrame:CGRectMake(31, 15, 20, 19)]; [self.tabBar addSubview:_selectedTag]; for (int i = 0; i < 5; i++) { UIButton *tabButton = [[[UIButton alloc] initWithFrame:CGRectMake(20 + i * 56, 0, 56, 49)] autorelease]; tabButton.tag = i; [tabButton addTarget:self
action:@selector(tabButtonTapped:) forControlEvents:UIControlEventTouchUpInside]; [self.tabBar addSubview:tabButton]; }
都添加到tabbar上面,然後調用方法
- (void)tabButtonTapped:(UIButton *)sender {
self.selectedIndex = sender.tag;//
//點擊圖片移動事件和tabbar事件相應在一起
// if (self.selectedIndex == ChannleMore) { // UINavigationController *moreNav = (UINavigationController *)self.selectedViewController; // [moreNav popToRootViewControllerAnimated:NO]; //} [UIView animateWithDuration:.2 animations:^{ [_selectedTag setFrame:CGRectMake(31
+ 60 * sender.tag, -15, 20, 19)]; }];}
上面就是tabbar的簡單使用,
如果不用圖片代替控制項的設定圖片,設定tabbar的itmes的方法是
[[self.tabBar.items objectAtIndex:0]setTitle:@"首頁"]
也可以設定背景,圖片,字型,
同理,UINavigationController,也可以同樣的方法實現,就是隱藏UINavigationController.navigationBarHidden=yes;然後自己創造navigation bar,
方法和tabbar差不多,
上面就是方法的簡單使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.