ListContent

@objc public enum ListContent: Int

Select the content to display in DownloadListController.

case downloadList: All tasks in downloadList, not include tasks in the trash(toDeleteList).

case unfinishedList: All unfinished tasks, not include tasks in trash. Sorted by add time.

case toDeleteList: Tasks in the trash. Sorted by delete time.

case subsection: downloadList is a two-dimensional String array, select this case to display specified part. Property subsectionIndex determines which part.

  • All tasks in downloadList, not include tasks in the trash(toDeleteList).

    Declaration

    Swift

    case downloadList
  • All unfinished tasks, not include tasks in trash. Sorted by add time.

    Declaration

    Swift

    case unfinishedList
  • Tasks in the trash. Sorted by delete time.

    Declaration

    Swift

    case toDeleteList
  • downloadList is a two-dimensional String array, select this case to display specified part. Property subsectionIndex determine which part.

    Declaration

    Swift

    case subsection