单击按钮将垂直屏幕模式更改为水平屏幕模式

时间:2016-03-24 08:44:22

标签: ios swift

单击垂直屏幕模式按钮到水平屏幕模式,再次将小鸡水平屏幕模式切换到垂直屏幕模式。

我如何达到这个效果?

1 个答案:

答案 0 :(得分:-1)

请试试这个:

    -(IBAction)buttonClick:(id)sender
{
    [[UIDevice currentDevice] setValue:
     [NSNumber numberWithInteger: UIInterfaceOrientationPortrait]
                                forKey:@"orientation"];
}

您可以根据方向更改要求使用不同的值。