Bartłomiej Semańczyk
Bartłomiej Semańczyk

Reputation: 61774

How to set subtitle in UINavigationController's title?

In some app I liked the title with two different lines of text:

enter image description here

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

Answers (1)

Bartłomiej Semańczyk
Bartłomiej Semańczyk

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

Related Questions