如何以编程方式更改方向。何时执行按钮操作? 我尝试下面的代码,但显示一些错误称为“没有可见的界面为uidevice声明选择器setorientation”
我的代码是
if (UIDeviceOrientationIsLandscape([UIDevice currentDevice].orientation))
{
// code for landscape orientation
// OR
// [[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeRight];
// // OR
/ / [[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeLeft];
}