Rotation

Prevent rotation to landscape view:

Override the following functions:
override var shouldAutorotate: Bool
        {
        return false
    }
 
    override var supportedInterfaceOrientations: UIInterfaceOrientationMask
        {
        return UIInterfaceOrientationMask.portrait
     
    }


Comments

Popular posts from this blog

Setting up a playground

Go to another page