Conforms to NSObject
Declared in SCItemCell.h

Overview

SCItemCell protocol represents object capable of rendering an item.

Tasks

  • – setModel:

    Override this method to get information required for rendering out of the item. Please avoid storing the item itself if possible.

    required method
  • – reloadData

    Override this method to get the missing data from the instance and render your cell UI using it.

    required method

Instance Methods

reloadData

Override this method to get the missing data from the instance and render your cell UI using it.

- (void)reloadData

Declared In

SCItemCell.h

setModel:

Override this method to get information required for rendering out of the item. Please avoid storing the item itself if possible.

- (void)setModel:(SCItem *)item

Parameters

item

A sitecore item to render

Declared In

SCItemCell.h