导航栏与另一个视图控制器';iOS7中的导航栏

导航栏与另一个视图控制器';iOS7中的导航栏,ios,objective-c,iphone,xcode,uinavigationbar,Ios,Objective C,Iphone,Xcode,Uinavigationbar,iOS 7上设置了应用程序的最低版本。然而,我的测试设备是在iOS 9上。由于XCode 7无法运行iOS7模拟器,我无法在iOS7上测试我的应用程序。 然而,远程测试团队正在iOS 7上进行测试,他们在下面的屏幕截图中报告了这个问题- 这在多个地方发生。只有在执行推送序列(已在情节提要中定义)时才会发生这种情况。我无法在iOS9中复制此问题。我无法签入iOS8,因为我的模拟器行为怪异 那么我怎样才能找到这种奇怪行为的确切原因呢?一开始为什么会这样?我做错什么了吗?最后,我如何在不需要实际的i

iOS 7上设置了应用程序的最低版本。然而,我的测试设备是在iOS 9上。由于XCode 7无法运行iOS7模拟器,我无法在iOS7上测试我的应用程序。
然而,远程测试团队正在iOS 7上进行测试,他们在下面的屏幕截图中报告了这个问题-

这在多个地方发生。只有在执行推送序列(已在情节提要中定义)时才会发生这种情况。我无法在iOS9中复制此问题。我无法签入iOS8,因为我的模拟器行为怪异

那么我怎样才能找到这种奇怪行为的确切原因呢?一开始为什么会这样?我做错什么了吗?最后,我如何在不需要实际的iOS7设备的情况下调试它

更新:
我在
viewDidLoad

self.automaticallyAdjustsScrollViewInsets = NO
self.edgesForExtendedLayout = UIRectEdgeNone;
但它仍然不起作用。我正在使用Crashlytics,发现了一个与此最相关的特定问题。这里是这个的链接

这是摘录

Fatal Exception: NSInvalidArgumentException
Can't add self as subview
Thread : Fatal Exception: NSInvalidArgumentException
0  CoreFoundation                 0x30b42f83 __exceptionPreprocess
1  libobjc.A.dylib                0x3b2f3ccf objc_exception_throw
2  CoreFoundation                 0x30b42ec5 -[NSException initWithCoder:]
3  UIKit                          0x3336b535 -[UIView(Internal) _addSubview:positioned:relativeTo:]
4  UIKit                          0x3336b4bf -[UIView(Hierarchy) addSubview:]
5  UIKit                          0x33533f71 __53-[_UINavigationParallaxTransition animateTransition:]_block_invoke
6  UIKit                          0x33371ac5 +[UIView(Animation) performWithoutAnimation:]
7  UIKit                          0x33533879 -[_UINavigationParallaxTransition animateTransition:]
8  UIKit                          0x334f0b27 -[UINavigationController _startCustomTransition:]
9  UIKit                          0x3340dd63 -[UINavigationController _startDeferredTransitionIfNeeded:]
10 UIKit                          0x3340db6d -[UINavigationController __viewWillLayoutSubviews]
11 UIKit                          0x3340db05 -[UILayoutContainerView layoutSubviews]
12 UIKit                          0x3335fd59 -[UIView(CALayerDelegate) layoutSublayersOfLayer:]
13 QuartzCore                     0x32fdd62b -[CALayer layoutSublayers]
14 QuartzCore                     0x32fd8e3b CA::Layer::layout_if_needed(CA::Transaction*)
15 QuartzCore                     0x32fd8ccd CA::Layer::layout_and_display_if_needed(CA::Transaction*)
16 QuartzCore                     0x32fd86df CA::Context::commit_transaction(CA::Transaction*)
17 QuartzCore                     0x32fd84ef CA::Transaction::commit()
18 QuartzCore                     0x32fd221d CA::Transaction::observer_callback(__CFRunLoopObserver*, unsigned long, void*)
19 CoreFoundation                 0x30b0e255 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__
20 CoreFoundation                 0x30b0bbf9 __CFRunLoopDoObservers
21 CoreFoundation                 0x30b0bf3b __CFRunLoopRun
22 CoreFoundation                 0x30a76ebf CFRunLoopRunSpecific
23 CoreFoundation                 0x30a76ca3 CFRunLoopRunInMode
24 GraphicsServices               0x3597c663 GSEventRunModal
25 UIKit                          0x333c314d UIApplicationMain
26 Palscom                        0xf1463 main (main.m:14)
27 libdyld.dylib                  0x3b800ab7 start
他们看起来有关联吗?如果是,原因可能是什么

self.automaticallyAdjustsScrollViewInsets = NO
在视图中加载,然后选中设置

self.automaticallyAdjustsScrollViewInsets = NO
在viewDidLoad中,然后检查