On 01.11.2011 22:14, Shawn Baker wrote: > If your program's target is iOS 5.0, then yes, it is possible. You > would override ShouldHideViewController and return false for the left > hand view controller. I found that I had to set the WeakDelegate in > my UISplitViewController derived class in order to get > ShouldHideViewController to be called. > > If you can't do 5.0 then MTSplitViewController is probably your best > alternative, although the author says it has some resizing bugs.
MTSplitViewController works like a charm for me. I've found only one serious issue that affected resizing when MTSplitViewController is hosted inside a Navigation- or TabBarController: https://github.com/robert-j/MTSplitViewController/commit/e0242f5937f5759719fb79766c2736ece4d0fb60 The other issue is caused by iOS's lack of containment support The InterfaceOrientation property of the model and detail controllers does not reflect the actual orientation anymore, because MTSplitViewController cannot update it (it's read-only). Other than that, MTSplitViewController simply rocks. Robert _______________________________________________ MonoTouch mailing list [email protected] http://lists.ximian.com/mailman/listinfo/monotouch
