次の方法で共有


UIViewController.LoadViewIfNeeded メソッド

定義

必要に応じて、ストーリーボードまたは NIB から を同期的に読み込みます View

[Foundation.Export("loadViewIfNeeded")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void LoadViewIfNeeded ();
abstract member LoadViewIfNeeded : unit -> unit
override this.LoadViewIfNeeded : unit -> unit
属性

注釈

このメソッドを使用すると、 にストーリーボードまたは NIB が関連付けられている場合UIViewControllerに、オブジェクトがインスタンス化されていることを確認Viewできます。 (ViewIfLoaded も参照してください)。

var newVC = UIStoryboard.FromName("Main", NSBundle.MainBundle).InstantiateInitialViewController();
if (newVC.ViewIfLoaded == null)
{
    //This call blocks until the View is instantiated
    newVC.LoadViewIfNeeded();
}

適用対象

こちらもご覧ください