+ deleteAllSavedUserActivitiesWithCompletionHandler:
Deletes all user activities created by your app.
あなたのアプリによって作成された全てのユーザアクティビティを削除します。
Availability 有効性
Technology
+ (void)deleteSavedUserActivitiesWithPersistentIdentifiers:(NSArray
<NSUserActivityPersistentIdentifier
> *)persistentIdentifiers
completionHandler:(void (^)(void))handler;
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). ユーザアクティビティを削除した後にシステムが発動するブロック。システムがこのブロックを呼び出すのを待ってください、システムがアクティビティそれらを削除する(または削除されるとそれらを印する)ことを確実にするために。
Deletes user activities with a persistent identifier matching any identifier in the persistent
array.
persistent
配列の中の何らかの識別子と合致するある永続識別子を持つユーザアクティビティそれらを削除します。
+ deleteAllSavedUserActivitiesWithCompletionHandler: