I was wondering how I could create a Navigation Bar where the user could tap the title of the navigation bar, so that it will open a new modal view, similar to the Twitter application when the user is creating a Tweet when they have multiple accounts linked.
Share
You can put a custom subclass of
UIViewas thetitleViewof the navigation bar. The easiest thing is to make this a button (or aUIButtonon aUIView) and set up an action to present the modal view as you like. You could instead set a view to respond to touches, but I really don’t see the advantage of going that route.