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 the TitleLinkItem.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSArray<id<SMIChoice>> *_Nonnull interactionItems;

    Swift

    var interactionItems: [Choice] { get }
  • The SMIFormTitleItem that has text information about this TitleLinkItem.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) id<SMIFormTitleItem> _Nonnull titleItem;

    Swift

    var titleItem: FormTitleItem { get }