Reputation: 9617
What is the best way to display hierarchical data in iPhone application?
Do you know some TreeView controls for iPhone?
Upvotes: 5
Views: 5236
Reputation: 1
You could try treeview-4iphone
http://code.google.com/p/treeview-4iphone/
Although there's no package to download you can get out the source via svn (you'll need to click on "source" tab).
Upvotes: 0
Reputation: 533
Question is a little bit old but as I was searching for something similar I though it's good to add the reference in case others need.
You may want to have a look here Rolling your own iPhone treeview control. That is the summary article that point to single articles (4 in total).
Code is available here
Upvotes: 8
Reputation: 1064
In most cases you would use a series of UITableView's combined with a UINavigationController. I'll see if I can find a nice tutorial.
Upvotes: 2