I\'ve managed to change the navigationbar height by using my own navigationbar, but the title is still centered. I want it to be at the 72px position from the left.
Another solution is to simply indent the title:
let paragraphStyle = NSMutableParagraphStyle() paragraphStyle.firstLineHeadIndent = 72 navigationBar.titleTextAttributes = [ .foregroundColor: UIColor.purple, .paragraphStyle: paragraphStyle ]