【iOS開發-78】用代碼實現UITabBarController+UINavigationController

來源:互聯網
上載者:User

標籤:blog   http   io   ar   color   os   on   2014   log   


#import "WPTabBarController.h"#import "WPFirstViewController.h"#import "WPSecondViewController.h"#import "WPThirdViewController.h"#import "WPFourthViewController.h"@interface WPTabBarController ()@end@implementation WPTabBarController- (void)viewDidLoad {    WPFirstViewController *firsVc=[[WPFirstViewController alloc]init];    WPSecondViewController *secondVc=[[WPSecondViewController alloc]init];    WPThirdViewController *thirdVc=[[WPThirdViewController alloc]init];    WPFourthViewController *fourthVc=[[WPFourthViewController alloc]init];        //以下兩種方式均可設定tabbar上得標題    [email protected]"訊息";    //[email protected]"訊息";    [email protected]"連絡人";    //[email protected]"連絡人";    [email protected]"動態";    //[email protected]"動態";    [email protected]"設定";    //[email protected]"設定";    //設定icon    firsVc.tabBarItem.image=[UIImage imageNamed:@"tab_recent_nor"];    secondVc.tabBarItem.image=[UIImage imageNamed:@"tab_buddy_nor"];    thirdVc.tabBarItem.image=[UIImage imageNamed:@"tab_qworld_nor"];    fourthVc.tabBarItem.image=[UIImage imageNamed:@"tab_me_nor"];        firsVc.view.backgroundColor=[UIColor redColor];    secondVc.view.backgroundColor=[UIColor whiteColor];    thirdVc.view.backgroundColor=[UIColor purpleColor];    fourthVc.view.backgroundColor=[UIColor greenColor];            //用以下方式添加子控制器    //[email protected][firsVc,secondVc,thirdVc,fourthVc];    [self addChildViewController:firsVc];    [self addChildViewController:secondVc];    [self addChildViewController:thirdVc];    [self addChildViewController:fourthVc];        [super viewDidLoad];    // Do any additional setup after loading the view.}

核心:

——定義1個tabBat控制器和4個導航控制器,然後通過addChildViewController或者數組的形式把4個導航控制器加到tabBar控制器中。

——每個導航控制器通過tabBarItem屬性來設定標題和icon等。

介面截屏:



【iOS開發-78】用代碼實現UITabBarController+UINavigationController

聯繫我們

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