Skip to content

Instantly share code, notes, and snippets.

@MarksCode
Created August 17, 2017 07:36
Show Gist options
  • Save MarksCode/ea14a0a984fd8384399893c2d987ebb8 to your computer and use it in GitHub Desktop.
Save MarksCode/ea14a0a984fd8384399893c2d987ebb8 to your computer and use it in GitHub Desktop.
let width = self.view.layer.bounds.width
let view = UIView(frame: CGRect(x: 0, y: 0, width: width-100, height: 40))
let titleLabel = UILabel(frame: CGRect(x: 0, y: 0, width: width-100, height: 40))
titleLabel.textAlignment = .center
titleLabel.text = "\(petsName)'s Day"
titleLabel.font = UIFont.systemFont(ofSize: 30)
titleLabel.backgroundColor = UIColor.clear
titleLabel.textColor = UIColor.white
titleLabel.adjustsFontSizeToFitWidth = true
titleLabel.minimumScaleFactor = 0.5
view.addSubview(titleLabel)
self.navBar.topItem?.titleView = view
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment