我试图检测UIImagePickerController中的方向变化(它继承自UINavigationController:UIViewController:UIResponder:NSObject),我尝试覆盖UIViewController中的方法- (BOOL)shouldAutorotateToInterfaceOrientation (UIInterfaceOrientation)interfaceOrientation
,但没有成功...
有小费吗?
提前致谢...
最佳答案
不支持子类化UIImagePickerController!
该类旨在按原样使用,不支持子类化。
也许您可以注册UIDeviceOrientationDidChangeNotification
from UIDevice
并使用它?
关于iphone - 在UIImagePickerController中检测方向变化?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2058540/