RepeatRates

@objc public enum RepeatRates: Int32

Represents some predefined repeat options for recurring timers.

  • Repeats forever.

    Declaration

    Swift

    case Indefinitely = -1
  • Does not repeat

    Declaration

    Swift

    case DontRepeat = 0
  • Repeats one time.

    Declaration

    Swift

    case RepeatOnce = 1