SINCallState

Objective-C

enum SINCallState : NSInteger {}

Swift

enum SINCallState : Int, @unchecked Sendable

Describes states call can be in

  • Undocumented

    Declaration

    Objective-C

    SINCallStateInitiating = 0

    Swift

    case initiating = 0
  • Undocumented

    Declaration

    Objective-C

    SINCallStateProgressing

    Swift

    case progressing = 1
  • Undocumented

    Declaration

    Objective-C

    SINCallStateRinging

    Swift

    case ringing = 2
  • Undocumented

    Declaration

    Objective-C

    SINCallStateAnswered

    Swift

    case answered = 3
  • Undocumented

    Declaration

    Objective-C

    SINCallStateEstablished

    Swift

    case established = 4
  • Undocumented

    Declaration

    Objective-C

    SINCallStateEnded

    Swift

    case ended = 5