D-A UK
D-A UK

Reputation: 1174

Navigation bar large title not indenting

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.

Upvotes: 1

Views: 496

Answers (1)

Matthew Helms
Matthew Helms

Reputation: 41

Try this

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

Upvotes: 4

Related Questions