0

我開始使用TabBarController開發我的應用程序,但是最近我在使用應用程序之前意識到使用了用戶身份驗證。所以我在TabBarContoller(2個標籤和2個視圖)之前創建了一個登錄頁面。但是現在我無法將控制器從ViewController推送到TabBarController。 什麼,我已經試過到目前爲止:(用戶點擊登錄頁面上的提交按鈕後):使用故事板從iOS 5中的ViewController導航到TabBarController

UIStoryboard* sb = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil]; 
    UIViewController* vc = [sb instantiateViewControllerWithIdentifier:@"twoOptions"]; 
    [self.navigationController pushViewController:vc animated:YES]; 

這裏,twoOptions是標識符我已經在Interface Builder中的故事板

命名爲TabBarController

請指引我

我通過下面的鏈接去: ViewController to TabBarController但還是不明白需要做什麼。我無法推視圖

回答

0

這裏是Link for the example

UITabBarController *tabBarController=[[UITabBarController alloc]init]; 
tabBarController.viewControllers = [NSArray arrayWithObjects:firstViewController,secondViewController,thirdViewController, nil]; 
[self presentModalViewController:tabBarController animated:NO]; 

我不知道你爲什麼使用故事板,但它也可以用代碼輕鬆完成。

+0

@Gilles以26.5k的聲望,你可能正在看到那些在國際空間站看着地球​​的故事板。 ;)我希望我也是那樣,但對於初學者來說,這似乎是一個很好的工具:) – aVC

相關問題