Post

Replies

Boosts

Views

Activity

Reply to UINavigationItem.titleView layout issue
It helps me to solve this issue let navBarTitleView = UIImageView(image: UIImage(named: "topLogo"))     navBarTitleView.contentMode = .center     navBarTitleView.translatesAutoresizingMaskIntoConstraints = false     if let navigationBarHeight = navigationController?.navigationBar.bounds.height {       navBarTitleView.heightAnchor.constraint(equalToConstant: navigationBarHeight).isActive = true     }     navBarTitleView.widthAnchor.constraint(equalToConstant: navBarTitleView.bounds.width).isActive = true     navigationItem.titleView = navBarTitleView
Aug ’22