FUIObjectComponent
public protocol FUIObjectComponent : AnyObject
Component protocol for Object data properties
-
detailImage
Default implementationUIImage
to display as the detail. In most components, set todetailImageView.image
.Default Implementation
Declaration
Swift
var detailImage: UIImage? { get set }
-
headlineText
Default implementationString
text to display as the headline. In most components, set toheadlineLabel.text
.Default Implementation
Declaration
Swift
var headlineText: String? { get set }
-
subheadlineText
Default implementationString
text to display as the subheadline. In most components, set tosubheadlineLabel.text
.Default Implementation
Declaration
Swift
var subheadlineText: String? { get set }
-
footnoteText
Default implementationString
text to display as the footnote. In most components, set tofootnoteLabel.text
.Default Implementation
Declaration
Swift
var footnoteText: String? { get set }
-
descriptionText
Default implementationString
text to display as the description. In most components, set todescriptionLabel.text
. Note:descriptionLabel
may be hidden in some components, when the view is in.compact
horizontal content mode, or, ifisApplyingSplitPercent
is set tofalse
.Default Implementation
Declaration
Swift
var descriptionText: String? { get set }
-
statusText
Default implementationString
text to display as the status. In most components, set tostatusLabel.text
.Default Implementation
Declaration
Swift
var statusText: String? { get set }
-
substatusText
Default implementationString
text to display as the substatus. In most components, set tosubstatusLabel.text
.Default Implementation
Declaration
Swift
var substatusText: String? { get set }
-
statusImage
Default implementationUIImage
to display as the status. In most components, set tostatusImageView.image
. Will be overridden bystatusText
if the text is notnil
.Default Implementation
Declaration
Swift
var statusImage: UIImage? { get set }
-
substatusImage
Default implementationUIImage
to display as the substatus. In most components, set tosubstatusImageView.image
. Will be overridden bysubstatusText
if the text is notnil
.Default Implementation
Declaration
Swift
var substatusImage: UIImage? { get set }