Instance Method インスタンスメソッド

makeNSViewController(context:)

Creates the view controller object and configures its initial state. ビューコントローラオブジェクトを作成します、そしてそれの初期状態を構成設定します。

Declaration 宣言

func makeNSViewController(context: Self.Context) -> Self.NSViewControllerType

Return Value 戻り値

Your AppKit view controller configured with the provided information. あなたのAppKitビューコントローラ、この提供された情報で構成設定されます。

Parameters パラメータ

context

A context structure containing information about the current state of the system. システムの現在の状態についての情報を含んでいる前後関係構造体。

Discussion 議論

You must implement this method and use it to create your view controller object. あなたは、このメソッドを実装して、そしてそれを使ってあなたのビューコントローラオブジェクトを作成しなければなりません。 Create the view controller using your app’s current data and contents of the context parameter. The system calls this method only once, when it creates your view controller for the first time. システムは、このメソッドをそれがあなたのビューコントローラを初めて作成する時に一度だけ呼び出します。 For all subsequent updates, the system calls the updateNSViewController(_:context:) method.

See Also 参照

Creating and Updating the View Controller ビューコントローラを作成および更新する