サイトアイコン Dev-Dev

【swift】スクリーン回転(Orientation)のアニメーションをしないようにする

【swift】スクリーン回転(Orientation)のアニメーションをしないようにする

override func willRotate(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval) {
UIView.setAnimationsEnabled(false)
}

override func didRotate(from fromInterfaceOrientation: UIInterfaceOrientation) {
UIView.setAnimationsEnabled(true)
}
モバイルバージョンを終了