Type Method 型メソッド

dismantleWKInterfaceObject(_:coordinator:)

Cleans up the presented WatchKit interface object (and its coordinator) in anticipation of their removal. 提示されたWatchKitインターフェイスオブジェクト(そしてそれのコーディネータ)をそれらの除去を見越してきれいに片付けます。

Declaration 宣言

static func dismantleWKInterfaceObject(_ wkInterfaceObject: Self.WKInterfaceObjectType, coordinator: Self.Coordinator)

Parameters パラメータ

wkInterfaceObject

Your custom interface object. あなたのあつらえのインターフェイスオブジェクト。

coordinator

The custom coordinator instance you use to communicate changes back to SwiftUI. If you do not use a custom coordinator, the system provides a default instance. あなたが変更を逆にSwiftUIへと伝えるために使用するあつらえのコーディネータインスタンス。あなたがあつらえのコーディネータを使わないならば、システムは省略時のインスタンスを提供します。

Discussion 議論

Use this method to perform additional clean-up work related to your custom interface object. For example, you might use this method to remove observers or update other parts of your SwiftUI interface. このメソッドを使って、あなたのあつらえのインターフェイスオブジェクトに関連する追加のクリーンアップ作業を実行してください。例えば、あなたはこのメソッドを使って、オブザーバを取り除いたり、あなたのSwiftUIインターフェイスの他の部分を更新したりするかもしれません。

Default Implementations 省略時実装

WKInterfaceObjectRepresentable Implementations