LabelCaptionCollectionViewCell

@objc(PESDKLabelCaptionCollectionViewCell) open class LabelCaptionCollectionViewCell: UICollectionViewCell

A LabelCaptionCollectionViewCell is a cell that displays two labels, one at the top and one at the bottom.

  • A label near the top of the cell.

    Declaration

    Swift

    open let label = UILabel()
  • A label near the bottom of the cell.

    Declaration

    Swift

    open let captionLabel = UILabel()
  • The tint color to use for the label when the cell is not selected

    Declaration

    Swift

    open var labelTintColor = UIColor.white
  • The tint color to use for the caption when the cell is not selected

    Declaration

    Swift

    open var captionTintColor = UIColor.white.withAlphaComponent(0.6)