I use the MonoTouch.Dialog DialogViewController to create a nice view.
private RootElement _createRoot(){
return new RootElement ("Buy a Property Report"){
new Section (""){
new StringElement ("View Sample", ()=>{ }),
new StringElement ("Enter Address", ()=>{ }),
new StringElement ("Locate This House", () => { }),
new StringElement ("My Reports", () => { })
}
};
}
On the following screens I need to have a back button that is different then what I specified in the previous "Buy a Property Report" to "Home"
I do this.
public override void ViewDidLoad ()
{
base.ViewDidLoad ();
this.NavigationController.NavigationBar.TopItem.Title = "Home";
}
Is there a way to do this in Monotouch.Dialog instead?