Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm developing nav-based app and I want to make "back" button and all navigation bar in bottom of the screen. It's possible? Help me please. Thx.

share|improve this question
and where is that bottom..?? – Shekhar_Pro Mar 21 '11 at 17:43
bottom - like tabbar, or maybe better use toolbar? – Tunyk Pavel Mar 21 '11 at 17:46

1 Answer

up vote 1 down vote accepted

This is not available using the standard UINavigationController. From the documentation, they says that you must never change the nav bar's frame or bounds.

If you need this feature you will have to:

  1. hide the original navigationBar
  2. create you own toolbar at the bottom as a subview of the main windows and always on top.
  3. mimic the animations by listening to UINavigationControllerDelegate methods

Should be workable, but a bit of a hassle.

share|improve this answer
Thx, probably better to use toolbar's – Tunyk Pavel Mar 21 '11 at 17:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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