SPUNoUpdateFoundReason
Objective-C
enum SPUNoUpdateFoundReason : OSStatus {}
Swift
enum SPUNoUpdateFoundReason : OSStatus, @unchecked Sendable
The reason why a new update is not available.
-
A new update is unavailable for an unknown reason.
Declaration
Objective-C
SPUNoUpdateFoundReasonUnknown
Swift
case unknown = 0
-
A new update is unavailable because the user is on the latest known version in the appcast feed.
Declaration
Objective-C
SPUNoUpdateFoundReasonOnLatestVersion
Swift
case onLatestVersion = 1
-
A new update is unavailable because the user is on a version newer than the latest known version in the appcast feed.
Declaration
Objective-C
SPUNoUpdateFoundReasonOnNewerThanLatestVersion
Swift
case onNewerThanLatestVersion = 2
-
A new update is unavailable because the user’s operating system version is too old for the update.
Declaration
Objective-C
SPUNoUpdateFoundReasonSystemIsTooOld
Swift
case systemIsTooOld = 3
-
A new update is unavailable because the user’s operating system version is too new for the update.
Declaration
Objective-C
SPUNoUpdateFoundReasonSystemIsTooNew
Swift
case systemIsTooNew = 4