Rotation
Prevent rotation to landscape view:
Override the following functions:
override var shouldAutorotate: Bool
{
return false
}
override var supportedInterfaceOrientations: UIInterfaceOrientationMask
{
return UIInterfaceOrientationMask.portrait
}
Override the following functions:
override var shouldAutorotate: Bool
{
return false
}
override var supportedInterfaceOrientations: UIInterfaceOrientationMask
{
return UIInterfaceOrientationMask.portrait
}
Comments
Post a Comment