SMICitationClaim

Objective-C

@protocol SMICitationClaim <NSObject>

Swift

protocol CitationClaim : NSObjectProtocol

Represents the start and end locations of a given citation.

  • The start offset for where the citation is located in the text message.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSUInteger claimStartOffset;

    Swift

    var claimStartOffset: UInt { get }
  • The end offset for where the citation is located in the text message.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSUInteger claimEndOffset;

    Swift

    var claimEndOffset: UInt { get }