ListItemCellPresentable
public protocol ListItemCellPresentable
Represents a type that is presentable through a ListItemCell
.
-
The image to set in the
ListItemCell
.Declaration
Swift
var image: UIImage? { get }
-
The
URL
of the image to set in theListItemCell
.Declaration
Swift
var imageURL: URL? { get }
-
The subtitle to set in the
ListItemCell
.Declaration
Swift
var subtitle: String { get }
-
The title to set in the
ListItemCell
.Declaration
Swift
var title: String { get }
-
Configure the
ListItemCell
.Declaration
Swift
func configureListCell(_ cell: ListItemCell)
Parameters
cell
The
ListItemCell
to configure.