4
我在根視圖控制器上設置了UINavigationBar
背景圖像,但我需要在詳細視圖控制器中刪除背景圖像。如何從UINavigationBar中刪除背景圖像
隨着對象 - 我用這個代碼:
if ([[UINavigationBar class] respondsToSelector:@selector(appearance)])
{
[self.navigationController.navigationBar setBackgroundImage:nil forBarMetrics:UIBarMetricsDefault];
}
所以,當我在MonoTouch中使用此代碼:
this.NavigationController.NavigationBar.SetBackgroundImage(null, UIBarMetrics.Default);
我收到此錯誤:
System.ArgumentNullExeption
Argument cannot be null
Parameter name: backgroundImage
哪有我刪除背景圖片?
錯誤報告爲https://bugzilla.xamarin.com/show_bug.cgi?id=下一個版本(如5.2.12穩定)提供5009 – poupou