"Back" button in bottom of the screen in Navigation-based app
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.
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:
- hide the original navigationBar
- create you own toolbar at the bottom as a subview of the main windows and always on top.
- mimic the animations by listening to UINavigationControllerDelegate methods
Should be workable, but a bit of a hassle.
精彩评论