iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x

ISCIListInt

@protocol ISCIListInt <ISCIList>

Defines the interface which allows to get access to primitive internal items array.

  • Gets the internal items array that this list wraps for direct access.

    Declaration

    Objective-C

    @property (nonatomic, readonly) int *itemsArray;

    Swift

    var itemsArray: UnsafeMutablePointer<Int32>! { get }
  • Gets the internal items array that this list wraps for direct access.

    Declaration

    Objective-C

    - (int *)getItemsArray:(BOOL)normalizeIndex;

    Swift

    func getItemsArray(_ normalizeIndex: Bool) -> UnsafeMutablePointer<Int32>!

    Parameters

    normalizeIndex

    The value which indicate whether to normalize index or not.

    Return Value

    The internal items array that this list wraps for direct access.