I am trying out making my first table based app.. However it wont change the color of the title on the navbar.
I tried this code, but it does not seem to work:
this.NavigationController.NavigationItem.TitleView.TintColor = UIColor.White;
Also I made a LeftBarButtonItem, however I can't see it, but when clicked where it should be, it does do what it should..
    this.NavigationController.NavigationItem.SetHidesBackButton (true, false);
    this.NavigationController.NavigationItem.LeftBarButtonItem = new UIBarButtonItem ();
    this.NavigationController.NavigationItem.LeftBarButtonItem.Style = UIBarButtonItemStyle.Plain;
    this.NavigationController.NavigationItem.LeftBarButtonItem.TintColor = UIColor.White;
    this.NavigationController.NavigationItem.LeftBarButtonItem.Title = "Tilbage";
    this.NavigationController.NavigationItem.LeftBarButtonItem.Clicked += (object sender, EventArgs e) => 
    {
        this.PerformSegue("fromItem", this);
    };
 
     
     
    