When large Titles are enabled, the Heading of the View is always centered when the Title is in the "small" state. How do I change that?
I can't set a custom UILabel as the titleView because the large title would be affected as well with this approach.
So I tried this:
let paragraph = NSMutableParagraphStyle()
paragraph.alignment = .left
let attributes = [NSAttributedStringKey.foregroundColor:UIColor.black,
NSAttributedStringKey.paragraphStyle:paragraph]
self.navigationBar.titleTextAttributes = attributes
But this, unfortunately, does not affect the alignment of the title in its small state at all. (Color change works)