0

How can i my title align left?

I want to title next to hamburger button.

Thanks for advices

Navigation bar

navigationController?.navigationBar.topItem?.title = "XXX"
Berik
  • 7,816
  • 2
  • 32
  • 40
burak kaya
  • 105
  • 1
  • 1
  • 6

1 Answers1

0

set your navigationController?.navigationBar.isTranslucent = false

        let leftInsect = 30
        let leftLabel = UILabel(frame: CGRect(x: 0, y: 0, width: view.frame.width - leftInsect, height: view.frame.height))
        leftLabel.text = "  XXX"
        leftLabel.textColor = UIColor.blue
        leftLabel.font = UIFont.systemFont(ofSize: 21)
        navigationItem.titleView = leftLabel

Adjust leftInsect according your need

Ajay saini
  • 2,352
  • 1
  • 11
  • 25