【发布时间】:2017-03-26 08:03:16
【问题描述】:
我已使用这些问题中的以下代码来禁用旋转动画。它适用于 iPhone 设备,但不适用于 iPad。
有问题的视图控制器是正在模态呈现的导航控制器的根视图控制器。
有谁知道为什么以下方法适用于 iPhone 而不是 iPad?
override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
coordinator.animate(alongsideTransition: nil) { _ in UIView.setAnimationsEnabled(true) }
UIView.setAnimationsEnabled(false)
super.viewWillTransition(to: size, with: coordinator)
}
StackOverflow 问题
Disable orientation change rotation animation
In 7.3/9/2+ Swift how to disable rotation animation, when device rotates?
【问题讨论】: