设备在ios中旋转

时间:2016-01-25 10:44:10

标签: ios objective-c

我想在ios中延迟自动旋转。

当我将设备旋转到风景时,我的视图只是保持3秒钟,然后视图旋转到风景。

是否有可能实现。

请帮忙。

感谢。

1 个答案:

答案 0 :(得分:0)

尝试使用它:

    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")
    }