Avatar
let o: UIImageOrientation switch UIDevice.current.orientation { case .portrait: o = .right case .landscapeLeft: o = .up case .landscapeRight: o = .down default: o = .right } self?.imageView.image = UIImage(cgImage: image.cgImage, scale: 1.0, orientation: o) @koher @Kishikawa Katsumi こんな感じにしてみました。デバイスの向きが portraitUpsideDown である場合を除いて、良い感じに動いてます。
👍 1