UIViewController.Unwind(UIStoryboardSegue, UIViewController) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在回溯路徑中任何 UIViewController 物件的回溯 segue 期間呼叫。
[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 不是容器的類別不應覆寫這個方法。