vote up 2 vote down star
5

How would one change the view on the screen programatically in an iPhone app?

I've been able to create navigation view's and programatically push/pop them to produce this behaviour, but if I wanted to simply change the current view (not using a UINavigation controller object), what is the neatest way to achive this?

A simple example, imagine an application with a single button, when pressed will display a new view, or possibly one of multiple views depending on some internal state variable.

I have yet to see any examples that attempt to do this, and I dont seem to understand enough about the relationships and initialisation procedure between UIViewController/UIView objects to achive this programatically.

flag

78% accept rate
Nice question. been looking for this answer too – KiwiBastard Dec 15 '08 at 23:28

6 Answers

vote up 4 vote down check

I use presentModalViewController:animated: to bring up a settings view from my main window's UIViewController and then when the user presses "done" in the settings view I call dismissModalViewControllerAnimated: from the settings view (reaching back to the parent view) like this:

[[self parentViewController] dismissModalViewControllerAnimated:YES];
link|flag
I actually just found an example doing exactly this and was on my way to come answer my own question. Thanks. – Akusete Dec 16 '08 at 6:08
vote up 2 vote down

You'll want to explore -[UIView addSubview:] and -[UIView removeFromSuperview]. Your base window is a UIView (descendant), so you can add and remove views to it.

link|flag
I must be missing something becuase whenever I try to do use that method I get runtime exceptions. I'll keep reading. – Akusete Dec 16 '08 at 6:09
vote up 0 vote down

How about pushing a generic UIView into the UINavigationController?

When you want one particular view shown, simply add it as a subview to that previously pushed UIView. When you want to change views, remove the previous subview and add the new one.

link|flag
Is it possible to do this without the Navigation View Bar at the top? If possible I want to be able to do this with just a standard UIView object. – Akusete Dec 16 '08 at 1:29
vote up 0 vote down

Hi Akusete,

Can you please give us the link to the example you found, or explain a little bit in more details. I confrunt with the same question.

Thanks, Alpar

link|flag
I've added an answer with a link – Akusete Dec 17 '08 at 0:30
vote up 0 vote down

I've found an example program which uses ModalView's to display views without nesting them as NavigatorControlView's.

iPhone Nav Bar Demo

The example link above, uses a modalView for the information link. And also uses navigation links for the table view links.

link|flag
vote up 0 vote down

The NavBarDemo is interesting but in the end, the modalView is just another view getting pushed and popped off the stack, from what I can tell.

What about cases like the maps application, where the map view switches to a table view listing search options when the user starts typing an address? Are both these views already init'ed at launch, and the search results table view just set to visibility 0 and when you type, its switched to 1, or is it actually loaded on the touchUpInside event of the text field?

I'll try messing with UIView addSubview to recreate this action and post my results

link|flag

Your Answer

Get an OpenID
or

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