Ios8 Xcode 6导航栏

Ios8 Xcode 6导航栏,ios8,xcode6,Ios8,Xcode6,注册屏幕上应该有一个后退按钮,而Sparks标题不应该在那里。如果我按下导航栏,它会再次进入欢迎屏幕,从那时起,一切都恢复正常。好的,我找到了解决方法 在按下新控制器的文件中,必须设置它隐藏后退按钮 controller.navigationItem.hidesBackButton=YES; [self.navigationController pushViewController:控制器已设置动画:是] I just upgraded my Xcode 5 project to Xcode 6


注册屏幕上应该有一个后退按钮,而Sparks标题不应该在那里。如果我按下导航栏,它会再次进入欢迎屏幕,从那时起,一切都恢复正常。

好的,我找到了解决方法

在按下新控制器的文件中,必须设置它隐藏后退按钮

controller.navigationItem.hidesBackButton=YES; [self.navigationController pushViewController:控制器已设置动画:是]

I just upgraded my Xcode 5 project to Xcode 6 (clean install). But now with 2 viewControllers there is a problem: I try to hide the back button on 1 of them, it goes weird (see the pictures). 

I didn't change anything. Is it possible to fix this somehow?