UIViewController.Unwind(UIStoryboardSegue, UIViewController) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在展开过程中对展开路径中的任何 UIViewController 对象调用。
[Foundation.Export("unwindForSegue:towardsViewController:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void Unwind (UIKit.UIStoryboardSegue unwindSegue, UIKit.UIViewController subsequentVC);
abstract member Unwind : UIKit.UIStoryboardSegue * UIKit.UIViewController -> unit
override this.Unwind : UIKit.UIStoryboardSegue * UIKit.UIViewController -> unit
参数
- unwindSegue
- UIStoryboardSegue
保留进程内展开 UIStoryboardSegue。
- subsequentVC
- UIViewController
展开方向的下一个 UIViewController 。
- 属性
注解
对展开UIStoryboardSegue路径中的每个对象调用UIViewController此方法。
在容器 UIViewController 类中重写时,此方法负责将容器配置为正确显示 subsequentVC
。 例如,在显示选项卡栏的容器 UIViewController 中,此方法将用于设置选项卡项以匹配 subsequentVC
。
UIViewController 不是容器的类不应重写此方法。