CPCallStates

Objective-C

enum CPCallStates : NSInteger {}

Swift

enum CPCallStates : Int

enum class for Call States

Since

1.0.0
  • Call object is initialized

    Declaration

    Objective-C

    CALLSTATES_INITIAL = 1

    Swift

    case initial = 1
  • Call is active.

    Declaration

    Objective-C

    CALLSTATES_IN_CALL = 3

    Swift

    case inCall = 3
  • Outgoing call is ringing

    Declaration

    Objective-C

    CALLSTATES_RINGING = 7

    Swift

    case ringing = 7
  • Call is held

    Declaration

    Objective-C

    CALLSTATES_ON_HOLD = 8

    Swift

    case onHold = 8
  • Remote side is on hold

    Declaration

    Objective-C

    CALLSTATES_REMOTELY_HELD = 9

    Swift

    case remotelyHeld = 9
  • ThreeWay Call is merging the other calls

    Declaration

    Objective-C

    CALLSTATES_JOINING = 10

    Swift

    case joining = 10
  • Call is ended completely

    Declaration

    Objective-C

    CALLSTATES_ENDED = 11

    Swift

    case ended = 11
  • Originator is dialing a number

    Declaration

    Objective-C

    CALLSTATES_DIALING = 12

    Swift

    case dialing = 12
  • Ringing call is answering

    Declaration

    Objective-C

    CALLSTATES_ANSWERING = 13

    Swift

    case answering = 13
  • Unknown

    Declaration

    Objective-C

    CALLSTATES_UNKNOWN = 19

    Swift

    case unknown = 19
  • Call is held and remote side is on hold simultaneously

    Declaration

    Objective-C

    CALLSTATES_ON_DOUBLE_HOLD = 20

    Swift

    case onDoubleHold = 20
  • 183 event came

    Declaration

    Objective-C

    CALLSTATES_SESSION_PROGRESS = 21

    Swift

    case sessionProgress = 21