共用方式為


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

適用於