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

userActivity(_:isActive:_:)

Advertises a user activity type. あるユーザアクティビティ型を広告します。

Declaration 宣言

func userActivity(_ activityType: String, isActive: Bool = true, _ update: @escaping (NSUserActivity) -> ()) -> some View

Parameters パラメータ

activityType

The type of activity to advertise. 広告するアクティビティの型。

isActive

When false, avoids advertising the activity. Defaults to true.

update

A function that modifies the passed-in activity for advertisement. ある関数、それは広告のためにその渡されたアクティビティを修正するものです。

Discussion 議論

You can use userActivity(_:isActive:_:) to start, stop, or modify the advertisement of a specific type of user activity.

The scope of the activity applies only to the scene or window the view is in. アクティビティのスコープは、その中にビューが入っているシーンまたはウインドウにのみ適用されます。

See Also 参照

User Activities