UIViewController.DidRotate(UIInterfaceOrientation) メソッド

定義

UI が回転した後に呼び出されます。

[Foundation.Export("didRotateFromInterfaceOrientation:")]
[ObjCRuntime.Deprecated(ObjCRuntime.PlatformName.iOS, 8, 0, ObjCRuntime.PlatformArchitecture.All, "Use Adaptive View Controllers instead.")]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void DidRotate (UIKit.UIInterfaceOrientation fromInterfaceOrientation);
abstract member DidRotate : UIKit.UIInterfaceOrientation -> unit
override this.DidRotate : UIKit.UIInterfaceOrientation -> unit

パラメーター

fromInterfaceOrientation
UIInterfaceOrientation

前の向き。

属性

注釈

アプリケーション開発者は、このメソッドをオーバーライドして、自動回転によって提供される以外の回転ロジックを実行できます。たとえば、高価な描画パラメーターの再計算、メディアの再生の変更と再起動などです。

このメソッドが呼び出されると、 InterfaceOrientation プロパティは新しい UIInterfaceOrientationに既に設定されています。

適用対象