Hello,
Questions seems very common. However, after trying several things I am posting question in this forum.
I am working on Xamarin.iOS. Currently, I am implementing UI where navigation bar is having image at its background. Now, on one of the screen in the application i want to change color of the navigation bar and hide back button. I have tried it with below code:
For hiding back button:
NavigationItem.HidesBackButton = true;
this.NavigationItem.SetHidesBackButton (true, false);
For Changing navigation bar color:
this.NavigationController.View.BackgroundColor = UIColor.Clear;
this.NavigationController.NavigationBar.BackgroundColor = UIColor.Clear;
this.NavigationController.NavigationBar.BarTintColor = UIColor.White;
also tried setting blank image as background and then change color
However, nothing seems to work in both cases.
I need to fix this on urgent basis. Any feedback,suggestions are appreciated.