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