up vote 0 down vote favorite
share [g+] share [fb]

I have an app that uses a UINavigationController as its main way of showing data.I want a Settings screen to pop up, but I also want to be able to push new views for Settings. From what I've found, I can't use a UIViewController do to this. How can I present a view by sliding it, and also have content pushed onto it?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You can display the view for your view controller subclass either by presenting it modally (slides from the bottom and takes over the whole screen) or pushing it onto the navigation stack with animation (slides from the right and keeps the navigation bar).

In either case, you control the content of the view using your view controller subclass. Typically you update labels and controls in the viewWillAppear method.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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