LoopMode

public enum LoopMode

enum to define different looping modes of the HighlightVideoPlayer

  • No looping, player will stop after reaching the end of the current item

    Declaration

    Swift

    case none
  • Loop the currently playing item, do not automatically advance to the next one

    Declaration

    Swift

    case onlyOne
  • Go to the next item after finishing the current one. This fill also go the first item after finishing the last one.

    Declaration

    Swift

    case sequence
  • Go to the next item after finishing the current one and stay looping the last one in the list when reached

    Declaration

    Swift

    case lastInSeq