iphone xcode - different levels of drill down in tab bar controller - nav controller - table view

Posted by Frames84 on Stack Overflow See other posts from Stack Overflow or by Frames84
Published on 2010-04-15T14:09:33Z Indexed on 2010/04/15 14:13 UTC
Read the original article Hit count: 837

Filed under:
|

I have this type of data categories:

today news -> news item

jobs news -> news item

general news -> sub category news -> news item

So i have followed the very good tutorial 'Building an iPhone App Combining Tab Bar, Navigation and Tab' http://www.youtube.com/watch?v=LBnPfAtswgw and all is good with the 1st two 'todays news' and 'jobs news' but can't figure out the best method for implementing the sub category table view?

Do i use the same table view but reload it with the sub categories then some how work out when one is click that it's a sub category or is there a better method?

This is how i'm set up in Main Window.Xib

- Tab Bar Controller
- -Navigation Controller (today)
- - - Table View (list of today news)
- -Navigation Controller (jobs)
- - - Table View (list of jobs news)
- -Navigation Controller (general)
- - - Table View (general sub cat) // how to implement this Table View
- - - - Table View (list of sub cat news)

Thanks for your time

© Stack Overflow or respective owner

Related posts about iphone

Related posts about xcode