在AppDelegate中,我使用UIAppearence设置自定义后退按钮背景图像。
[[UIBarButtonItem appearance] setBackButtonBackgroundImage:image forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
[[UIBarButtonItem appearance] setBackButtonBackgroundImage:highlightedImage forState:UIControlStateHighlighted barMetrics:UIBarMetricsDefault];
在推送视图控制器后的某些情况下,在我的自定义上显示默认的后退按钮背景图像。
答案 0 :(得分:1)
它帮助我隐藏了默认图片。
[[UINavigationBar appearance] setTintColor:[UIColor clearColor]];