Contents

deleteAll(completion:)

Deletes all interactions that you donated previously.

Declaration

class func deleteAll(completion: (@Sendable ((any Error)?) -> Void)? = nil)
class func deleteAll() async throws

Parameters

  • completion:

    A block to execute with the results. Provide a block if you want to know whether the deletion action succeeded. The block has no return value and takes the following parameter.

    error

    An error object indicating a problem occurred. On success, this parameter is nil. If there was an error, this parameter contains an error object describing what happened.

Mentioned in

Discussion

Call this method to delete all of your app’s previously donated SiriKit interactions. If you provide a block in the completion parameter, the system executes your block asynchronously with the results.

See Also

Deleting Interactions from the System