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

ISCIUpdateSuspender

@protocol ISCIUpdateSuspender <ISCIDisposable>

Defines the interface to an SCIUpdateSuspender, a disposable class which allows nested suspend/resume operations on an ISCISuspendable instance.

  • Gets a value indicating whether updates for this instance are currently suspended.

    Declaration

    Objective-C

    @property (nonatomic, readonly) BOOL isSuspended;

    Swift

    var isSuspended: Bool { get }
  • Defines the value indicating whether the target will resume when the current instance is disposed. Default is YES.

    Declaration

    Objective-C

    @property (nonatomic) BOOL resumeTargetOnClose;

    Swift

    var resumeTargetOnClose: Bool { get set }