I add a Navigation bar and for the left bar item I set the UIView. Inside the view, I add a search bar.
It looks ok, but it is "disabled". It is not white and I can't click on it:
What is the problem?
In my app the user can move the navigation bar and find a uibutton underneath. The button fails to register taps when located underneath where the navigation bar would be. The button works fine when placed away from the navigation bar. How can I make sure the button recognizes taps when visible?
Uinavigationbar will not recognize touches in navigation region if navigation bar is set to opaque. I solved by temporarily setting bar to translucent while hidden
I can click 5-10 points underneath the navigationbar and it registers a button click. This barbutton item is not a custom bar button. I used the new debug views debugger and the frame of the barbutton item is not stretching down underneath the navigation bar. this is not a custom navigation bar.
I want my top nav bar to be hidden, with a menu icon in the top left hand corner (same position as on the nav bar). When the button is activated the top nav bar appears and the menu icon appears in the same position on the nav bar. So the top nav bar show hides like the tap screen function, but rather than tapping anywhere on the screen its on a specific button. Is this possible? (i'm a designer not a developer btw)
I have more than 5 tabs, so the "more" button appears and works fine. However, when I open up one of the tabs from the more menu, there is an extra navigation bar at the top, which shrinks the available space in my app.
I want to move or re-implement the "more" button (at the top of the
page) into my existing navigation bar for each tab. How do I do
this?
Here is an image of what i have now, and what I want is to move that "More" button into the space where it says "Here instead", so that I can hide the upper black bar. If it matters, I am using the storyboards.
You will need to hide the navigation bar, and then create your own button on your tool bar that will pop to the root navigation controller.
To hide the nav bar:
[myTabBarController.moreNavigationController setNavigationBarHidden:YES animated:NO];
It looks like in order to recreate the left arrow from the navigation bar in your tool bar, you will actually have to use an image and set that as the view of your toolbar item. There is an image you can use here.