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

适用于