UIAppearance子视图从导航栏中消失

时间:2014-04-01 12:21:39

标签: uiview navigationbar uiappearance

我正在使用appdelegate中的外观对导航栏进行一些更改。

这是我的方法:

-(void) setAppearance{
    NSMutableDictionary *titleBarAttributes = [NSMutableDictionary dictionaryWithDictionary: [[UINavigationBar appearance] titleTextAttributes]];
    [titleBarAttributes setValue:[UIFont fontWithName:@"AvantGarde-ExtraLight" size:18] forKey:NSFontAttributeName];
    [titleBarAttributes setValue:[UIColor whiteColor] forKey:NSForegroundColorAttributeName];
    [[UINavigationBar appearance] setTitleTextAttributes:titleBarAttributes];
    [[UINavigationBar appearance] setBarTintColor:[UIColor colorWithRed:6.0/256.0 green:57.0/256.0 blue:84.0/256.0 alpha:1.0]];
    [[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];

    int borderSize = 3;
    UIImageView *navBorder = [[UIImageView alloc] initWithFrame:CGRectMake(0,
                                                                           41,
                                                                           320,
                                                                           borderSize)];

    navBorder.image = [UIImage imageNamed:@"energy_line"];

    navBorder.tag = 999;


    [[UINavigationBar appearance] addSubview:navBorder];

    [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
}

我的appdelegate中有一个方法将窗口设置为我的第一个viewController,当我调用此方法时,我的navBorder将从导航栏中删除。我不明白为什么会发生这种情况,没有代码可以在viewcontroller的导航栏中更改任何内容。

- (void)rootView
{
    [self.window setRootViewController:initialViewController];
}

1 个答案:

答案 0 :(得分:0)

我在这里回答了几乎相同的问题:https://stackoverflow.com/a/26414437/538491

但这是一个总结: 调用[[UINavigationBar appearance]]返回接收器类的外观代理。 addSubview:方法未标记为UI_APPEARANCE_SELECTOR。 UIAppearance的代理方法的一个主要缺点是很难知道哪些选择器是兼容的。

您应该抓住导航栏并通过调用此方法在其中添加图像:[self.navigationController.navigationBar addSubview:navBorder]或者您应该将UINavigationBar子类化,从而为您提供更大的灵活性。