2013-12-19 96 views
0

在AppDelegate中,我使用UIAppearence設置自定義後退按鈕背景圖像。UIBarButtonItem的默認後退按鈕出現在我的自定義

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

在某些情況下推視圖控制器後出現默認後退按鈕背景圖像超過我的自定義。

回答

1

它幫助我隱藏默認圖像。

[[UINavigationBar appearance] setTintColor:[UIColor clearColor]]; 
相關問題