Reputation: 61774
In some app I liked the title with two different lines of text:
How can I do this?
So far I used self.title = "My Title"
.
I know about Prompt, but it is not that.
Upvotes: 1
Views: 611
Reputation: 61774
It cannot be done automatically through the Storyboard. Just create apriopriate titleView
as an UIView
and then assign it to titleView property.
navigationItem.titleView = titleView
Upvotes: 1