SMITitleLinkItem
Objective-C
@protocol SMITitleLinkItem <NSObject>
Swift
protocol TitleLinkItem : NSObjectProtocol
Representative of TitleLinkItem that will be used to respresent items in the chat feed.
-
An array of
SMIFormTitleOptionItem
that make up theTitleLinkItem
.Declaration
Objective-C
@property (nonatomic, strong, readonly) NSArray<id<SMIChoice>> *_Nonnull interactionItems;
Swift
var interactionItems: [any Choice] { get }
-
The
SMIFormTitleItem
that has text information about thisTitleLinkItem
.Declaration
Objective-C
@property (nonatomic, strong, readonly) id<SMIFormTitleItem> _Nonnull titleItem;
Swift
var titleItem: any FormTitleItem { get }