Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Navigation bar title and navigation buttons not appearing on iOS 11

Tags:

Prior to iOS 11, the UINavigationBar buttons and title are being displayed correctly.

Yesterday I downloaded Xcode 9 with iOS 11 and, after building and running without doing changes, both navigation buttons and the title are not being displayed anymore. It shows the UINavigationBar with the correct color I am setting but nothing else.

I tried on different simulators and also I updated an iPhone 7 to iOS 11 beta 5 and the result is the same. Nothing being displayed.

Has someone faced the same problem? I have tried changing different parts of the code and storyboard but nothing affects...

EDIT with screenshots: http://imgur.com/a/Hy46c

Thanks in advance!

like image 789
Leeroy Jenkins Avatar asked Aug 18 '17 07:08

Leeroy Jenkins


People also ask

Where is the navigation bar button?

The Navigation bar is there to help you navigate your phone. The traditional navigation buttons are the default layout and appear at the bottom of the screen.

How do I change my Apple navigation bar?

On your Mac, use Dock & Menu Bar System Preferences to change the appearance of the Dock, and to select items to show in the menu bar and in Control Center. To change these preferences, choose Apple menu > System Preferences, then click Dock & Menu Bar .


Video Answer


2 Answers

For Xcode 9, it appears that it is no longer enough to just set the frame of a custom view that is being injected into the navigationItem titleView. The intrinsic content size of your titleView now must be overriden and set as well.

Here's the code, adjust the width and height to suit your needs:

class NavigationBarTitleView: UIView {      override var intrinsicContentSize: CGSize {         return CGSize(width: bounds.width - 100, height: 50)     }      ...  } 
like image 67
Justin Vallely Avatar answered Sep 20 '22 00:09

Justin Vallely


use sizeToFit()! ios 11 automatically sizes it, but ios 10 does not

like image 34
Carly O'Keefe Avatar answered Sep 18 '22 00:09

Carly O'Keefe