这会产生错误
Generate a project for iphone only withorientation Landscape left 和 Landscape Right
向界面生成器添加一个按钮
在 ipad 模拟器上运行
按下按钮,它不起作用。
我能做些什么?
这解决了ios 6中的方向问题
-(NSUInteger)supportedInterfaceOrientations{
return UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight;
}
在 ViewController 中实现该supportedInterfaceOrientations
方法没有帮助。
一种解决方法是选择“通用”(iPhone + iPad)作为目标设备。