iOS 设置某个ViewController可以旋转

来源:互联网 发布:蜘蛛爬行软件 编辑:程序博客网 时间:2024/06/07 06:36

//支持横屏设置

- (BOOL)shouldAutorotate

{

    returnYES;

}

-(UIInterfaceOrientationMask)supportedInterfaceOrientations

{

    returnUIInterfaceOrientationMaskAll;

}