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

onContinueUserActivity(_:perform:)

Registers a handler to invoke when the view receives the specified activity type for the scene or window the view is in. あるハンドラを登録して、ビューがこの指定されたアクティビティ型を、その中にビューが入っているシーンまたはウインドウに対して受け取る時に発動します。

Declaration 宣言

func onContinueUserActivity(_ activityType: String, perform action: @escaping (NSUserActivity) -> ()) -> some View

Parameters パラメータ

activityType

The type of activity to handle.

action

A function to call that takes a NSUserActivity object as its parameter when delivering the activity to the scene or window the view is in. 呼び出すことになるある関数、それはあるNSUserActivityオブジェクトを、その中にビューが入っているシーンまたはウインドウにそのアクティビティを配達する時に、それのパラメータとしてとります。

See Also 参照

User Activities