ContentDownloadState

public enum ContentDownloadState

The state of the data downloading

  • Downloading not started yet

    Declaration

    Swift

    case idle
  • Loading in progress, the progression value is between 0 and 1

    Declaration

    Swift

    case progress(purcent: Double)
  • Gives the data that was downloaded with success

    Declaration

    Swift

    case success(data: Data)