次の方法で共有


CPApplicationDelegate.GetViewController メソッド

定義

によって識別される を UIViewController 取得します restorationIdentifierComponents

[Foundation.Export("application:viewControllerWithRestorationIdentifierPath:coder:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual UIKit.UIViewController GetViewController (UIKit.UIApplication application, string[] restorationIdentifierComponents, Foundation.NSCoder coder);
abstract member GetViewController : UIKit.UIApplication * string[] * Foundation.NSCoder -> UIKit.UIViewController
override this.GetViewController : UIKit.UIApplication * string[] * Foundation.NSCoder -> UIKit.UIViewController

パラメーター

application
UIApplication

このデリゲート メソッドを呼び出した UIApplication への参照。

restorationIdentifierComponents
String[]

目的のビュー コントローラーへのパスを識別する識別子の配列。最後に指定する必要があります。

coder
NSCoder

戻り値

属性

注釈

特定 UIViewControllerの を取得するには、 restorationIdentifierComponents には、目的のビュー コントローラーの識別子と、ビュー コントローラー階層内のすべての先祖が含まれている必要があります。 最後の値は目的のビュー コントローラーの値である必要があります。1 つ目はビュー コントローラー階層のルートである必要があります。

適用対象