在主题“Is there a way to set a separate short title for UITabBar?”中,系统会询问(编辑)此问题:“如何在标签栏上显示短视图名称,并在链接同一视图时提供更长(更具描述性)的名称在表视图中(有更多空间)。“答案是为导航控制器和tabBar控制器提供单独的标题。我不认为这完全回答了这个问题。可以看到tabBar标题的两个位置:在标签栏本身和“更多...”屏幕上,这是一个tableView。
当标签栏上显示标题时,标题需要很短,但在“更多”视图中,标题需要更长。有什么办法可以实现这个目标?
答案 0 :(得分:0)
回答我自己的问题:在TabBarController委托中使用暴力:
// UITabBarControllerDelegate
- (void)tabBarController:(UITabBarController *)tabBarController didEndCustomizingViewControllers:(NSArray *)viewControllers changed:(BOOL)changed
{
if ( changed ) { // swap tabBar titles for the controllers with long and short names
int index = 0; // 0, 1, 2, 3 are on the tab bar, others are on the More tableView
for ( UINavigationController *aNavController in viewControllers ) {
if ( index > 3 ) { // use long names, look for short names
if ( [aNavController.tabBarItem.title ieq:@"Short"] ) {
aNavController.tabBarItem.title = @"The Long Title";
}
} else { // use short names, look for long names
if ( [aNavController.tabBarItem.title ieq:@"The Long Title"] ) {
aNavController.tabBarItem.title = @"Short";
}
}
index++;
}
}
}