func updateUIViewController (Self.UIViewControllerType , context: Self.Context)
associatedtype UIViewControllerType : UIViewController
Availability 有効性
Technology
func makeUIViewController(context: Self.Context
) -> Self.UIViewControllerType
Your UIKit view controller configured with the provided information. あなたのUIKitビューコントローラ、この提供された情報で構成設定されます。
context
A context structure containing information about the current state of the system. システムの現在の状態についての情報を含んでいる前後関係構造体。
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 update
method.
func updateUIViewController (Self.UIViewControllerType , context: Self.Context)
associatedtype UIViewControllerType : UIViewController