[MonoTouch] Pushing Monotouch.Dialog.DialogViewController - No back button

2012-02-14 Thread Felix Collins
Hi, I've got a couple of UITableViewController based views that I push onto a UINavigationController just like the multiscreen tutorial example. That all works fine. I'm trying out Monotouch.Dialog so I created a DialogViewController based view and pushed that onto the

Re: [MonoTouch] Pushing Monotouch.Dialog.DialogViewController - No back button

2012-02-14 Thread Craig Dunn
Felix, DialogViewController ctor has an optional parameter pushing, if you pass true then the back button will show. In my case i subclass DialogViewController, so i've got this - notice the third param in the base() call public ExhibitorsScreen () : base (UITableViewStyle.Plain, null, true) {