How do I add two alternating UITableViews to an existing UINavigationController view?

Posted by Ron Flax on Stack Overflow See other posts from Stack Overflow or by Ron Flax
Published on 2010-05-11T13:47:40Z Indexed on 2010/05/11 16:44 UTC
Read the original article Hit count: 271

Filed under:
|
|

I'm new to iPhone development and I am writing an iPhone app that needs two different table views, which are selectable using a button bar or tab bar. These table views are both the same size, but only cover about two thirds of the screen from the bottom up. The top portion of the screen remains the same when either of these tables is displayed. I'd also like to animate (flip) these views when the user selects one or the other.

The view that these two tables will be displayed on is the detail view of my app where the user has already selected an item from the primary screen's table. I'm using a UINavigationController to manage the primary and detail views and I have this working. I also have the first of these two detail tables working as part of my detail view, but I think it makes more sense to isolate the code for these two tables and not duplicate all of the code for the part of the detail view that doesn't change.

I don't really care how these two table views are created (either in code or via IB). I've tried several things and I can't seem to figure it out. Any help or ideas (with sample code) would be greatly appreciated!

© Stack Overflow or respective owner

Related posts about iphone-sdk

Related posts about iphone