我为iPhone 4s
之前的版本创建了一个应用程序。除iPhone 5
. 我已经为 iPhone 设置了纵向和纵向视图,并为 iPad 设置了upsidedown
所有方向视图。我的问题是,手柄方向在 iPhone 5 中不起作用,但在以前的版本中运行良好。在我升级xcode
到支持后我面临这个问题iOS 6
。
我还找到了一些解决方案,使用这些方法
"
-(BOOL)shouldAutorotate {
return YES;
}
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskAll;
}
"
代替
“ - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
”方法...
在使用它之后,我也面临同样的问题......那么我的问题应该是什么,我能做些什么来克服这个问题?
请帮忙。
谢谢