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差不多,
上面就是方法的簡單使用