UITabbarViewController

 


[cpp]
  view plain copy
  1. -(id)init {  
  2.     if ([super init] != nil) {  
  3.         UITabBarItem *item = [[UITabBarItem alloc] initWithTitle:@"asdfsadf" p_w_picpath:[UIImage p_w_picpathNamed:@"WWAN5.png"] tag:1];  
  4.         self.tabBarItem = item;  
  5.         [item release];  
  6.     }  
  7.     return self;  
  8. }  

我不多寫關於IOS的文章,寫這篇徹底是由於網絡上copy,paste的文章太多,將我誤導,搞的我花了半天時間纔會用這控件,最後仍是看了外國一個英文貼子,纔會用。所以寫了這篇供後學之人學習加快吧,也但願你們在寫文章時,不要千篇一概的複製、粘貼。咱們是軟件工程師,而不是複製、粘貼工程師。css

 

該文章內容展現效果以下圖:網絡

接下來,你將看到徹底用代碼實現的tab bar選項卡切換效果。下面開始。app

準備工做,建立一個項目名爲ViewSwitcher(你能夠選擇基於View-based Application或Window-based Application,只不過選擇後者的話,要本身建立一個view controller罷了,我是選擇了第一個)。ide

在此,我不會教你們只在ViewSwitcherAppDelegate中去建立UITabBarController的實例(這種方式網上處處都是),我要教你們如何在本身的view controller中建立UITabBarController實例。oop

下一步,建立兩個view controller類,我這裏命名爲BlueViewController和YellowViewController,固然,它們都是UIViewController的子類。學習

接着,在ViewSwitcherViewController的viewDidLoad方法中,代碼以下:url

[cpp]  view plain copy
  1. tabBar = [[UITabBarController alloc] init];  
  2. tabBar.delegate = self;  
  3. blueViewController = [[BlueViewController alloc] init];  
  4. yellowViewController = [[YellowViewController alloc] init];  
  5. NSArray *viewControllerArray = [NSArray arrayWithObjects:blueViewController,yellowViewController,nil];  
  6. tabBar.viewControllers = viewControllerArray;  
  7. tabBar.view.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);  
  8. [self.view addSubview:tabBar.view];  
  9. [viewControllerArray release];  

 

 

其中tabBar是在.h文件中聲明的UITabBarController對象實例。這樣運行看看吧。spa

你會看到爲何兩個按鈕是黑色的呢,沒有字呢?沒錯,由於咱們尚未寫這部分代碼。設置tab bar標籤的圖片或文字,能夠在它的子view controller中作(這麼說或許不是很恰當,由於官方可不這麼叫),在這裏,我是寫在blueViewController和yellowViewController中的,重寫它們的init方法,將它們的tabBarItem成員賦值,代碼以下:.net

 

[css]  view plain copy
  1. -(id)init {  
  2.     if ([super init] != nil) {  
  3.         UITabBarItem *item = [[UITabBarItem alloc] initWithTitle:@"asdfsadf" p_w_picpath:[UIImage p_w_picpathNamed:@"WWAN5.png"] tag:1];  
  4.         self.tabBarItem = item;  
  5.         [item release];  
  6.     }  
  7.     return self;  
  8. }  

 

 

運行進來 ,你將看到新的效果。orm

那麼,那個在item上的小紅圈提示是怎麼來的呢??咱們實現UITabBarDelegate中的- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController方法,代碼以下:

 

[cpp]  view plain copy
  1. - (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController{  
  2. //  [self.view addSubview:viewController.view];  
  3.     //  tabBarController.selectedViewController = viewController;  
  4.     viewController.tabBarItem.badgeValue = [NSString stringWithFormat:@"%d",80];  
  5. //  viewController.tabBarItem.title = @"aaa";  
  6. }  
相關文章
相關標籤/搜索