Adding a title to the left side of the navigation bar

后端 未结 3 1116
迷失自我
迷失自我 2021-02-04 05:07

Is it possible to add a title to the left side of the navigation bar? I know how I can add a title in the center but when I try to add one to the left side I see nothing. This i

3条回答
  •  孤城傲影
    2021-02-04 05:32

    navigationController?.navigationBar.isTranslucent = false

        let titleLabel = UILabel(frame: CGRect(x: 0, y: 0, width: view.frame.width - 32, height: view.frame.height))
        titleLabel.text = "  Home"
        titleLabel.textColor = UIColor.white
        titleLabel.font = UIFont.systemFont(ofSize: 20)
        navigationItem.titleView = titleLabel
    

提交回复
热议问题