アプリで tabBar を作成したいのですが、AppDelegate ではなく、detailView でのみ作成します。Googleでこれを行う方法を検索していますが、私が理解したものはすべてAppDelegate.m
私はこのようなことをしようとしています。これは、2 つのボタン (名前なし) を持つタブ バーを示していますが、1 つの FirstViewController から、1 つの backItemButton を持つナビゲーション バーを持つ 2 つの項目 SecondViewController または ThirdViewController のいずれかに移動して、FirstViewController に戻りたいと考えています。
- (void)viewDidLoad
{
[super viewDidLoad];
[self setupTabBar];
}
- (void) setupTabBar {
tabBars = [[UITabBarController alloc] init];
NSMutableArray *localViewControllersArray = [[NSMutableArray alloc] initWithCapacity:4];
YPProfileViewController *profile = [[YPProfileViewController alloc] init];
YPProfileViewController *profile2 = [[YPProfileViewController alloc] init];
[localViewControllersArray addObject:profile];
[localViewControllersArray addObject:profile2];
tabBars.tabBarItem = profile2;
tabBars.viewControllers = localViewControllersArray;
tabBars.view.autoresizingMask==(UIViewAutoresizingFlexibleHeight);
[self.view addSubview:tabBars.view];
}