Reputation: 1174
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?:
Any help would me much appreciated, thanks.
Upvotes: 1
Views: 496
Reputation: 41
Try this
let p = NSMutableParagraphStyle()
p.firstLineHeadIndent = 5
navController.navigationBar.largeTitleTextAttributes = [NSAttributedStringKey.paragraphStyle: p]
Upvotes: 4