美文网首页SwiftSwift专题Swift学习
swift 禁止app横屏的方式

swift 禁止app横屏的方式

作者: 羽翼de光辉 | 来源:发表于2015-08-14 17:47 被阅读2876次

    overridefunc supportedInterfaceOrientations()->Int{

    returnInt(UIInterfaceOrientationMask.Portrait.rawValue)

    }

    相关文章

      网友评论

      • RiberWang:请问应该放到哪里 appdelegate还是viewcontroller或者tabbarcontroller
      • 814caae8520c:更新了
        override func supportedInterfaceOrientations() -> UIInterfaceOrientationMask{
        return UIInterfaceOrientationMask.Portrait
        }
        RiberWang:@朴朴先森 请问应该放到哪里 appdelegate还是viewcontroller或者tabbarcontroller
        34f930b15d3f:@郭鵬飛on
        override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
        return UIInterfaceOrientationMask.portrait
        }
        郭鵬飛on:@光棱 现在又更了该怎么写

      本文标题:swift 禁止app横屏的方式

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