1

我正在使用 Uinavigationcontroller 作为 Windows 根视图控制器。在其他一些视图中,我正在展示视图控制器,但我的应用程序在 iOS 8 中崩溃。它在 ios7 中运行完美。它说

 Terminating app due to uncaught exception 'NSInvalidArgumentException', reason:
'-[InfoVC my_shouldAutorotate]: unrecognized selector sent to instance 0x15cd42780'.  

其中 InfoVC 是视图控制器。什么是 my_shouldAutorotate

4

1 回答 1

0

在您的 InfoVC 类中编写以下方法: -(BOOL)shouldAutorotate{ return NO; }

于 2016-02-11T12:17:18.137 回答