vote up 0 vote down star

I want to be able to switch between a UITableView and a standard UIView in a Parent View. Basically I have a UITableView that shows on load displaying a log of information. I want to have a segment control in the header of the Window that when the user taps, transitions to a Graph View which is a standard UIView.

The UIViewController in question needs the ability to be pushed from a RootViewController stack.

I have tried a number of things, but I can't seem to get this to work. Does anyone have any code examples or suggestions on how this could be done?

flag

1 Answer

vote up 0 vote down

It sounds like you should have a parent view that contains the segment control and space for a child view. When the user selects a segment you would add the relevant view (table or graph) as a child of the view and set its rectangle so it occupies the child area.

-----------
| Segment |
-----------
|         |
|         |
|  Child  |
|         |
-----------
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.