class func deleteAllSavedUserActivities (completionHandler : () -> Void)
The list of persistent identifiers that the system uses to determine which user activities to delete. どのユーザアクティビティが削除されるかシステムが決定するために使う永続識別子のリスト。
Availability 有効性
Technology
class func deleteSavedUserActivities(withPersistentIdentifiers persistentIdentifiers: [NSUserActivityPersistentIdentifier
],
completionHandler handler: @escaping () -> Void
)
persistentIdentifiers
The list of persistent identifiers that the system uses to determine which user activities to delete. どのユーザアクティビティが削除されるかシステムが決定するために使う永続識別子のリスト。
handler
The block that the system invokes after deleting the user activities. Wait for the system to call this block to ensure that the system deletes the activities (or marks them for deletion). ユーザアクティビティを削除した後にシステムが発動するブロック。システムがこのブロックを呼び出すのを待ってください、システムがアクティビティそれらを削除する(または削除されるとそれらを印する)ことを確実にするために。
Concurrency Note 並行性注意
You can call this method from synchronous code using a completion handler, as shown on this page, or you can call it as an asynchronous method that has the following declaration: あなたは、このメソッドを同期コードから完了ハンドラを使って呼び出せます、このページで示されるように、またはあなたはそれを以下の宣言を持つ非同期メソッドとして呼び出せます:
For information about concurrency and asynchronous code in Swift, see Calling Objective-C APIs Asynchronously. Swiftにおける並行性と非同期コードについての情報として、Objective-C APIを非同期に呼び出すを見てください。
Deletes user activities with a persistent identifier matching any identifier in the persistent
array.
persistent
配列の中の何らかの識別子と合致するある永続識別子を持つユーザアクティビティそれらを削除します。
class func deleteAllSavedUserActivities (completionHandler : () -> Void)