美文网首页
iOS 屏幕旋转

iOS 屏幕旋转

作者: 花蕊1235 | 来源:发表于2017-12-20 11:21 被阅读0次

    每个视图控制器都控制着自己的旋转方向,如果需要新的旋转权限需要模态出新的视图控制器(如navigation tabbar)

    // 注册旋转通知

    //发送通知

    [[NSNotificationCenterdefaultCenter]postNotificationName:@"hengping"object:nil];

    // 接收旋转通知

    //接收通知

    [[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(hengpingAction)name:@"hengping"object:nil];

    限制权限

    - (NSUInteger)supportedInterfaceOrientations {

    returnUIInterfaceOrientationMaskPortrait;

    }

    打开权限

    -(NSUInteger)supportedInterfaceOrientations

    {

    returnUIInterfaceOrientationMaskAll;

    }

    相关文章

      网友评论

          本文标题:iOS 屏幕旋转

          本文链接:https://www.haomeiwen.com/subject/qefgwxtx.html