I want to delay the auto rotation in ios.
When I rotate the device to landscape my view's just stay as it is for 3 sec and then view's rotate to landscape.
Is it possible to achieve.
Please help.
Thanks.
I want to delay the auto rotation in ios.
When I rotate the device to landscape my view's just stay as it is for 3 sec and then view's rotate to landscape.
Is it possible to achieve.
Please help.
Thanks.
Try to use this:
let delayTime = dispatch_time(DISPATCH_TIME_NOW, Int64(3 * Double(NSEC_PER_SEC)))
dispatch_after(delayTime, dispatch_get_main_queue()) {
let value = UIInterfaceOrientation.LandscapeLeft.rawValue
UIDevice.currentDevice().setValue(value, forKey: "orientation")
}