Protocol

UIViewControllerRepresentable

A view that represents a UIKit view controller. あるビュー、それはUIKitビューコントローラを表します。

Declaration 宣言

protocol UIViewControllerRepresentable : View where Self.Body == Never

Overview 概要

Use a UIViewControllerRepresentable instance to create and manage a UIViewController object in your SwiftUI interface. Adopt this protocol in one of your app’s custom instances, and use its methods to create, update, and tear down your view controller. The creation and update processes parallel the behavior of SwiftUI views, and you use them to configure your view controller with your app’s current state information. Use the teardown process to remove your view controller cleanly from your SwiftUI. For example, you might use the teardown process to notify other objects that the view controller is disappearing. 解体処理を使って、あなたのビューコントローラをあなたのSwiftUIからきれいに取り除いてください。例えば、あなたは解体処理を使って、ビューコントローラが見えなくしている他のオブジェクトに通知します。

To add your view controller into your SwiftUI interface, create your UIViewControllerRepresentable instance and add it to your SwiftUI interface. The system calls the methods of your custom instance at appropriate times. システムは、あなたのあつらえのインスタンスを適時に呼び出します。

The system doesn’t automatically communicate changes occurring within your view controller to other parts of your SwiftUI interface. When you want your view controller to coordinate with other SwiftUI views, you must provide a Coordinator instance to facilitate those interactions. For example, you use a coordinator to forward target-action and delegate messages from your view controller to any SwiftUI views. 例えば、あなたはあるコーディネータを使って、ターゲットアクションと委任先メッセージをあなたのビューコントローラからあらゆるSwiftUIビューへと転送します。

Topics 話題

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

Cleaning Up the View Controller ビューコントローラをきれいに片付ける

Providing a Custom Coordinator Object あつらえのコーデネータオブジェクトを提供する

Relationships 関係

Inherits From 継承元

See Also 参照

UIKit Views in SwiftUI Apps