UIBarButtonItem的默认后退按钮背景图像显示在我的自定义上

时间:2013-12-19 09:26:39

标签: uinavigationcontroller uibarbuttonitem uiappearance

在AppDelegate中,我使用UIAppearence设置自定义后退按钮背景图像。

[[UIBarButtonItem appearance] setBackButtonBackgroundImage:image forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
[[UIBarButtonItem appearance] setBackButtonBackgroundImage:highlightedImage forState:UIControlStateHighlighted barMetrics:UIBarMetricsDefault];

在推送视图控制器后的某些情况下,在我的自定义上显示默认的后退按钮背景图像。

1 个答案:

答案 0 :(得分:1)

它帮助我隐藏了默认图片。

[[UINavigationBar appearance] setTintColor:[UIColor clearColor]];