SPUUserUpdateChoice

Objective-C

enum SPUUserUpdateChoice : NSInteger {}

Swift

enum SPUUserUpdateChoice : Int, @unchecked Sendable

A choice made by the user when prompted with a new update.

  • Dismisses the update and skips being notified of it in the future.

    Declaration

    Objective-C

    SPUUserUpdateChoiceSkip

    Swift

    case skip = 0
  • Downloads (if needed) and installs the update.

    Declaration

    Objective-C

    SPUUserUpdateChoiceInstall

    Swift

    case install = 1
  • Dismisses the update until Sparkle reminds the user of it at a later time.

    Declaration

    Objective-C

    SPUUserUpdateChoiceDismiss

    Swift

    case dismiss = 2