CellImageViewStyle

@objc public enum CellImageViewStyle: Int

Appearance style of imageView in UITableViewCell in DownloadListController.

case thumbnail: Show a thumbnail image at the location of cell’s imageView.

case index: Show index(begin from 1) at the location of cell’s imageView.

case none: Hidden cell’s imageView.

  • Show a thumbnail image at the location of cell’s imageView.

    Declaration

    Swift

    case thumbnail
  • Show index location(begin from 1) at the location of cell’s imageView.

    Declaration

    Swift

    case index
  • Hidden cell’s imageView.

    Declaration

    Swift

    case none