I want to create acustom navigation bar.
I know that we can use UIButton in the middle instead of title in the navigation bar, but can we make something that look like this picture?
As you see we have three different buttons in the middle of this navigation bar. Can you share your idea with me how we can implement such a thing in iPhone?
Assuming you are using a Navigation Controller you can set your navigationBar’s titleView property to a UIView container that holds the three buttons in the middle (and the two sets of three dots). The code would look like something like this:
Or you could do this all in IB of course.