2

I am relatively new to programming for the iphone OS, but know the basics and some other things. What I am wondering is how would I program an app that acts like there is a navigation controller, just without the navigation controller bar that comes with it?

3 Answers 3

1

Try a UITabBarController : UITabBarController Class Reference.

Sign up to request clarification or add additional context in comments.

Comments

1

You can hide the navigationBar that comes with the controller and maintain all the functionality that the navigationController provides. Pass the following method to the navigationController to hide/show the bar.

- (void)setNavigationBarHidden:(BOOL)hidden animated:(BOOL)animated

Comments

1

Another alternative is to have a main view that you swap out subviews from, using an animation as you add or remove views...

But using a navigation controller with the navigation bar hidden as Daniel noted is much simpler.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.