PDA

View Full Version : UITableView - children of the root children, etc




mathcolo
Jul 17, 2009, 07:47 PM
Hello there:

In the last few days, I've been attempting to create a navigation-based application for iPhone that has children, with children of those children. I used Google to find a few tutorials like this one (http://theappleblog.com/2009/04/15/iphone-dev-sessions-create-a-navigation-based-application/) that describe how to make an application like this, but only with children, not sublevels beyond that. How do I extend a tutorial like the above one to show more navigation lists below one child? I looked at pushViewController but I'm not trying to push a view controller, I'm trying to push more navigation.

Hopefully the above makes sense. Any help would be greatly appreciated...

Thanks,
mathcolo



dejo
Jul 17, 2009, 10:29 PM
I looked at pushViewController but I'm not trying to push a view controller, I'm trying to push more navigation
Tip: UINavigationController is a subclass of UIViewController.

mathcolo
Jul 18, 2009, 12:30 PM
Tip: UINavigationController is a subclass of UIViewController.

Ok, so I just created a new UITableViewController (a subclass of UIViewController) for each step of the navigation and it seems to work normally.

Thanks!