我正在开发使用 Tabbarcontroller 的应用程序(有两个选项卡)在 iphone 上一切正常,但在 ipad 上,两个选项卡都位于屏幕中央
我想在每个选项卡的中心显示标题和图像(考虑到选项卡宽度是屏幕的一半)
在搜索这些时,我遇到了 UIEdgeInsetsMake
将 iOS TabBar 项目标题调整到它的中心但对此没有帮助。
我不明白把这段代码放在哪里。我试图把它放在 FirstViewController 中,然后放在应用程序委托中(一个接一个),但对我没有任何作用
这是我的 appDelete 代码:
FirstViewController *firstVC = [[FirstViewController alloc] init];
UINavigationController *navController1 = [[UINavigationController alloc] initWithRootViewController:firstVC];
//navController1.title = @"First Tab";
navController1.tabBarItem.image = [UIImage imageNamed:@"first.png"];
SecondViewController *secondVC = [[SecondViewController alloc] init];
UINavigationController *navController2 = [[UINavigationController alloc] initWithRootViewController:secondVC];
navController2.title = @"Second Tab";
navController2.tabBarItem.image = [UIImage imageNamed:@"second.png"];
NSArray *array = [[NSArray alloc] initWithObjects:navController1,navController2, nil];
UITabBarController *tabBarController = [[UITabBarController alloc] init];
tabBarController.tabBarItem.imageInsets = UIEdgeInsetsMake(0, -50, 0, 50);
tabBarController.viewControllers = array;
[self.window setRootViewController:tabBarController];
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
return YES;
有人可以帮忙吗?