MenuItemCell

open class MenuItemCell : UICollectionViewCell

This is the default collection view cell used by the MenuCollectionController to display the list of Menu.

  • An image view for the content.

    Declaration

    Swift

    @IBOutlet
    public var image: UIImageView!
  • The name label.

    Declaration

    Swift

    @IBOutlet
    public var name: UILabel!
  • A container view for the name label.

    Declaration

    Swift

    @IBOutlet
    public var nameContainerView: UIView!
  • A stack view for the menu list.

    Declaration

    Swift

    @IBOutlet
    public var menuStackView: UIStackView!