I am trying to display names on a custom navigation title For long names it is truncating, How do I display the text in multiple lines for long names, Here is the code I used for custom titleView
nameLabel.font = UIFont(name: “Arial-Medium", size: 19)
nameLabel.textAlignment = .center
nameLabel.numberOfLines = 2
nameLabel.adjustsFontSizeToFitWidth = true
nameLabel.lineBreakMode = .byCharWrapping
self.navigationItem.titleView = nameLabel