Navigation bar large title not indenting

489 Views Asked by At

I have a large title navigation and the title is not being indented to be in line with the UIBarButton items.

How do I fix this?:

enter image description here

Any help would me much appreciated, thanks.

1

There are 1 best solutions below

0
On

Try this

let p = NSMutableParagraphStyle()
p.firstLineHeadIndent = 5
navController.navigationBar.largeTitleTextAttributes = [NSAttributedStringKey.paragraphStyle: p]