单击垂直屏幕模式按钮到水平屏幕模式,再次将小鸡水平屏幕模式切换到垂直屏幕模式。
我如何达到这个效果?
答案 0 :(得分:-1)
请试试这个:
-(IBAction)buttonClick:(id)sender
{
[[UIDevice currentDevice] setValue:
[NSNumber numberWithInteger: UIInterfaceOrientationPortrait]
forKey:@"orientation"];
}
您可以根据方向更改要求使用不同的值。