Event

public enum Event

Encapsulates changes to the iCloud key-value store.

  • The user has changed the primary iCloud account. The keys and values in the local key-value store have been replaced with those from the new account, regardless of the relative timestamps.

    Declaration

    Swift

    case accountChange([String])
  • Your attempt to write to key-value storage was discarded because an initial download from iCloud has not yet happened.

    Declaration

    Swift

    case initialSyncChange([String])
  • Your app’s key-value store has exceeded its space quota on the iCloud server.

    Declaration

    Swift

    case quotaViolationChange([String])
  • One or more values changed in iCloud. The associated value is an array of key names that changed in the key-value store.

    Declaration

    Swift

    case serverChange([String])