Re: [MonoTouch] iPad Master/Detail help, please?

2012-05-22 Thread bobreck
Thanks Nic. Not sure why mine wasn't working, but yours does. Much appreciated. Bob -- View this message in context: http://monotouch.2284126.n4.nabble.com/iPad-Master-Detail-help-please-tp4646069p4649850.html Sent from the MonoTouch mailing list archive at Nabble.com.

Re: [MonoTouch] iPad Master/Detail help, please?

2012-05-22 Thread bobreck
Craig, Thank you very much! These examples will help greatly. Bob -- View this message in context: http://monotouch.2284126.n4.nabble.com/iPad-Master-Detail-help-please-tp4646069p4649851.html Sent from the MonoTouch mailing list archive at Nabble.com.

Re: [MonoTouch] iPad Master/Detail help, please?

2012-05-22 Thread Nic Wise
Old version of the templates maybe? On Tue, May 22, 2012 at 1:53 PM, bobreck rr...@keylogic.com wrote: Craig, Thank you very much!  These examples will help greatly. Bob -- View this message in context:

Re: [MonoTouch] iPad Master/Detail help, please?

2012-05-21 Thread Nic Wise
Hi Bob (bit late, sorry!) I made a new iPad app, and put this into the RootViewController's DataSource - RowSelected method. var vc = controller.SplitViewController.ViewControllers[1] as UINavigationController; var dvc = new DetailViewController(); vc.PushViewController(dvc, true);

Re: [MonoTouch] iPad Master/Detail help, please?

2012-05-21 Thread bobreck
Nic, Thanks so much for the reply. Unfortunately, when I start a new project and put your code into the SelectedRow method, I get a null error on vc. Is there, by chance, something that you forgot to include? Bob -- View this message in context:

Re: [MonoTouch] iPad Master/Detail help, please?

2012-05-21 Thread Craig Dunn
Bob, there is also a SplitView sample on github https://github.com/xamarin/monotouch-samples/tree/master/SplitView (looks like https://github.com/xamarin/monotouch-samples/raw/master/SplitView/Screenshots/01.png ) and a couple of SplitView 'recipes' here with sample code to download

[MonoTouch] iPad Master/Detail help, please?

2012-05-19 Thread bobreck
Hey everyone, I'm still very new to the world of iOS development and I'm currently working on my second app. The first was an iPhone only app and this new one is iPad only. I have started out using an iPad Master/Detail template in MonoDevelop but I am stumped. I've searched the web and come