ListItemCell

open class ListItemCell : UICollectionViewCell
extension ListItemCell: Loadable

A general collection view cell for list content.

  • A container view for all elements except for the activitiy indicator.

    Declaration

    Swift

    @IBOutlet
    public var containerView: UIView!
  • An image view for the content.

    Declaration

    Swift

    @IBOutlet
    public var imageView: UIImageView!
  • A stack view holding the title and subtitle label.

    Declaration

    Swift

    @IBOutlet
    public var contentStackView: UIStackView!
  • The title label.

    Declaration

    Swift

    @IBOutlet
    public var titleLabel: UILabel!
  • The subtitle label.

    Declaration

    Swift

    @IBOutlet
    public var subtitleLabel: UILabel!
  • A general action button.

    Declaration

    Swift

    @IBOutlet
    public var actionButton: UIButton!
  • An activity Indicator for loading content.

    Declaration

    Swift

    @IBOutlet
    public var activityIndicator: UIActivityIndicatorView!
  • Declaration

    Swift

    public var loadMessage: String
  • Declaration

    Swift

    public func showLoading()
  • Declaration

    Swift

    public func hideLoading()