1

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.

Bartłomiej Semańczyk
  • 59,234
  • 49
  • 233
  • 358

1 Answers1

1

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
Bartłomiej Semańczyk
  • 59,234
  • 49
  • 233
  • 358