次のようなUITabBarControllerを作成してnavigationControllerをプッシュしましたが、tabbarcontrollerがNULLであるため、タブバー項目などのタイトルを設定できません。self.tabBarControllerがNULLです
私が間違っている場所を教えてください。 tabBarControllerためdocumentationで
UITabBarController *tabBarController = [[UITabBarController alloc] init];
LoggedInFeedNavigationController *lvc = [[LoggedInFeedNavigationController alloc] initWithAccount:account];
[tabBarController setViewControllers:[NSArray arrayWithObject:lvc]];
[tabBarController setSelectedIndex:0];
[self presentModalViewController:tabBarController animated:YES];
[tabBarController release];
[lvc release];
は、どのようにそれにアクセスしようとしていますか? – joshpaul
LoggedInFeedNavigationController、self.tabBarControllerにあります。 –