为什么要将AutorotateToInterfaceOrientation方法标记为不可用?

时间:2015-05-14 16:41:46

标签: ios swift screen-orientation

我把这段代码放到了UIViewController子句中:

override func shouldAutorotateToInterfaceOrientation(toInterfaceOrientation: UIInterfaceOrientation) -> Bool {
    return true
}

我得到这个编译时错误:

无法覆盖已标记为“不可用”的“shouldAutorotateToInterfaceOrientation”

有什么问题?我怎么能解决这个问题?

3 个答案:

答案 0 :(得分:8)

shouldAutorotateToInterfaceOrientation已弃用,请尝试使用shouldAutorotate()

答案 1 :(得分:2)

使用此代码 -

override var shouldAutorotate: Bool {
    return true
}

希望这有帮助!

答案 2 :(得分:0)

我只是更改了这段代码

WillPopScope

此代码

shouldAutorotateToInterfaceOrientation