FUIWhatsNewCollectionViewCell

open class FUIWhatsNewCollectionViewCell : FUIBaseDrawingCollectionViewCell<FUIWhatsNewCollectionItemView>

The FUIBaseDrawingCollectionViewCell subclass is used to show new feature items in FUIWhatsNewDetailListController. It has a similar setup and layout to FUIObjectCollectionViewCell.

## Usage

 let cell = collectionView.dequeueReusableCell(withReuseIdentifier: FUIWhatsNewCollectionViewCell.reuseIdentifier, for: indexPath) as! FUIWhatsNewCollectionViewCell
 cell.detailImageViewSize = CGSize(width: 66, height: 66)
 cell.detailImageView.image = UIImage(named: "cat")
 cell.headlineLabel.text = "headline text"
 cell.subheadlineLabel.text = "subheadline text"

## Theming Supported style classes

 fdlFUIWhatsNewCollectionViewCell_headlineLabel
 fdlFUIWhatsNewCollectionViewCell_subheadlineLabel
 fdlFUIWhatsNewCollectionViewCell_footnoteLabel
 fdlFUIWhatsNewCollectionViewCell_descriptionLabel
 fdlFUIWhatsNewCollectionViewCell_statusLabel
 fdlFUIWhatsNewCollectionViewCell_substatusLabel
  • Dimensions of detailImageView. Default CGSize(width: 66, height: 66).

    Declaration

    Swift

    public var detailImageViewSize: CGSize { get set }