I just started implementing a Split View Controller for my iOS app, trying to make the storyboard universal. Most things seem to work fine although on iPhone I get this weird issue in the navigation bar on push:
I set the title with the simple self.title = "Shoulders"
.
Here's what the storyboard looks like:
I tried to recreate the connections, but the problem is the same. Works fine on iPad. Any help is appreciated!
Ended up fixing it by setting the title on the master view's prepareForSegue()
. Works like a charm.