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

makeUIView(context:)

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

Declaration 宣言

func makeUIView(context: Self.Context) -> Self.UIViewType

Return Value 戻り値

Your UIKit view configured with the provided information. あなたのUIKitビュー、この提供された情報で構成設定されます。

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

See Also 参照

Creating and Updating the View ビューの作成と更新