-1

我制作了一个运行良好的自定义 UITabBar,但我对导航进行了更改,现在我遇到了一些严重的问题。这是我所拥有的:

常规设置

TabBarController 
    NavbarController1 - TabBarItem1
        Links to: PeopleView
    NavbarController2 - TabBarItem2
        Links to: ContentView
    NavbarController3 - TabBarItem3
        Links to: ContentView //Same VC as TabBaritem 2.  

App Delegate - 在我的 didFinishLaunchingWithOptions 方法中,我调用了 customizeTabBar 方法,如下所示

-(void) customizeTabBar
{

UITabBarController *tabVC = (UITabBarController *) self.window.rootViewController;
//Load Navigation Bar images
NSArray *unSelectedImages = [[NSArray alloc] initWithObjects:@"image1.jpg", @"image2.jpg", @"image3.jpg", @"image4.jpg", @"image5.jpg", nil];
NSArray *selectedImages = [[NSArray alloc] initWithObjects:@"image1_on.jpg", @"image2_on.jpg", @"image3_on.jpg", @"image4_on.jpg", @"image5_on.jpg", nil];

NSArray *items = tabVC.tabBar.items;

for (int idx = 0; idx < items.count; idx++)
{
    
    UITabBarItem *barItem = [items objectAtIndex:idx];
    barItem.tag = idx;
    UIImage *selectedImage = [UIImage imageNamed:[selectedImages objectAtIndex:idx]];
    UIImage *unSelectedImage = [UIImage imageNamed:[unSelectedImages objectAtIndex:idx]];
    
    
    UIEdgeInsets inset = {
        .top = 10,
        .left = 0,
        .bottom = -10,
        .right = 0
    };
    
    barItem.imageInsets = inset;
    
    [barItem setFinishedSelectedImage:selectedImage withFinishedUnselectedImage:unSelectedImage];
}

到目前为止,这工作得很好。

这就是问题所在。为了让我的 TabBarItem3 链接到 ContentView,我在 TabBarClass 中实现了以下代码:

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController {

if (viewController.tabBarItem.tag == 1 || viewController.tabBarItem.tag == 2 )
{
    // Validating if is necesarry to replace the TabBarController.ViewControllers
    UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
    
    MediaList *mediaView = [storyboard  instantiateViewControllerWithIdentifier:@"SB_MediaList"];
    UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:mediaView];
    NSMutableArray *viewsArray = [NSMutableArray arrayWithArray:self.viewControllers];
    
    
    if (viewController.tabBarItem.tag == 1)
    {
        //Setting the specfic data for my instance for tabBarItem 1
        NSLog(@"Here we are in 1");
        [mediaView setContent:@"Personalized content/data for TabBarItem 1"];
    }
    else if (viewController.tabBarItem.tag == 2)
    {
        //Setting the specfic data for my instance for tabBarItem 2
        NSLog(@"Here we are in 2");
        [mediaView setContent:@"Personalized content/data for TabBarItem 2"];
    }
    [viewsArray replaceObjectAtIndex:viewController.tabBarItem.tag withObject:navigationController];
    self.viewControllers = viewsArray;
    
}
}

执行此代码后,我会丢失与第 2 项或第 3 项的自定义选项卡栏关联的图像(取决于我选择的内容)。

更新

所以,我将我的标签栏自定义方法从我的委托中移到了一个 maintabbar 类中,我在 viewdidload 上调用它,然后我隐藏了 didselectviewcontroller。这似乎解决了丢失图像的问题,但是当我单击任一软管项目时,会产生屏幕闪烁的不良副作用。我已经尝试了从 viewdidload 方法中删除它的不同组合,但仍然没有运气..

4

1 回答 1

0

据我了解,这整件事的目的是避免为两个标签栏项目创建不同的类,这两个标签栏项目将执行几乎相同的事情但具有不同的数据。

所以首先,你必须定义一个能够做这种事情的类,我们称之为CommonClass。此类必须具有进行正确初始化的必要方法。[我确定你已经这样做了]。

然后在你的故事板上,你仍然需要有两个ViewController元素,每个元素都作为它对应的 rootViewController NavigationController

在此处输入图像描述

我强烈建议这样做,而不是像我们尝试的那样尝试通过代码分配新实例:Linking to a view multiple times from tabar。这两个视图控制器显然属于同一个类 CommonClass,因此您仍将重用该类。通过这种方式,我们不必NavigationBar在执行期间更改可能会造成混乱的情况。

CommonClass然后,您可以为您的方法发送必要的初始化信息,该方法CommonClass将根据所选的 tabBarItem 加载适当的信息/数据,您可以在viewDidLoad方法上执行此操作。

如下:

- (void)viewDidLoad
{
    [super viewDidLoad];
    if (self.tabBarController.selectedIndex == 1) {
        [self customizeWithData:@"Specific data for my first instance"];
    } else if (self.tabBarController.selectedIndex == 2) {
        [self customizeWithData:@"Specific data for my second instance"];        
    }
}

通过这种方式,您将只在代码的一部分中自定义标签栏,并且由于您不会在执行时更改它,因此您不需要在其他部分进行自定义导致闪烁。

于 2013-09-28T21:29:31.477 回答