Re: managing split view iPad

2010-07-20 Thread Andrea Mattiuz
On Jul 20, 2010, at 4.53 PM, Michael Babin wrote: >I'm picturing a set-up like the one used by the Settings app on the iPad, having a split view with a table view on the left and a navigation view on the right. Selecting an item in the table view on the left sets a new "root view" in the navig

Re: managing split view iPad

2010-07-20 Thread Michael Babin
On Jul 20, 2010, at 9:24 AM, Andrea Mattiuz wrote: > with -[UINavigationController setViewControllers:animated:] I can "reset" > the navigation controller on the right side, passing to this method an array > with the only ViewController of the new view I have to represent. > Why I can do it on

Re: managing split view iPad

2010-07-20 Thread Andrea Mattiuz
thanks, with -[UINavigationController setViewControllers:animated:] I can "reset" the navigation controller on the right side, passing to this method an array with the only ViewController of the new view I have to represent. Why I can do it only at the first tap and after that nothing changes

Re: managing split view iPad

2010-07-20 Thread Michael Babin
On Jul 20, 2010, at 3:08 AM, Andrea Mattiuz wrote: > thank you mmalc for the tip, > but I don't have a navigation controller in the view xib file that I will > charge, because I have an only navigation controller on the right side, > declarated on the MainView xib file, an I work changing it. >

Re: managing split view iPad

2010-07-20 Thread Andrea Mattiuz
thank you mmalc for the tip, but I don't have a navigation controller in the view xib file that I will charge, because I have an only navigation controller on the right side, declarated on the MainView xib file, an I work changing it. When I tap on the left side I modified the controller with thi

Re: managing split view iPad

2010-07-19 Thread mmalc Crawford
On Jul 19, 2010, at 12:19 am, Andrea Mattiuz wrote: > I can't manage the change of a navigation controller on the right side of a > split view application (iPad) after a tap on the left side. > The behavior of this app would be similar to the 'settings' app in the iPad > simulator. > any sugges

managing split view iPad

2010-07-19 Thread Andrea Mattiuz
hi all, I can't manage the change of a navigation controller on the right side of a split view application (iPad) after a tap on the left side. The behavior of this app would be similar to the 'settings' app in the iPad simulator. any suggestions or examples would be very appreciated. Thanks! A