---
title: INStartCallIntentResponseCode.continueInApp
framework: intents
role: symbol
role_heading: Case
path: intents/instartcallintentresponsecode/continueinapp
---

# INStartCallIntentResponseCode.continueInApp

A response code that indicates your app extension is ready to transfer control to the app to start the call.

## Declaration

```swift
case continueInApp
```

## Discussion

Discussion Returning this code during the confirm phase causes Siri to display an error button labeled “Continue in <appName>”. Upon returning this code during the handle phase, Siri launches your app and passes it the NSUserActivity object you provided at initialization. (If you didn’t provide a user activity object, Siri creates one for you). Siri adds an INInteraction object with the intent and your response to the user activity object before delivering it. Your app should use the information in the user activity object to start the call. Return this code after successfully handling the start call intent instead of using INStartCallIntentResponseCode.ready.

## See Also

### Response Code

- [INStartCallIntentResponseCode.unspecified](intents/instartcallintentresponsecode/unspecified.md)
- [INStartCallIntentResponseCode.ready](intents/instartcallintentresponsecode/ready.md)
- [INStartCallIntentResponseCode.userConfirmationRequired](intents/instartcallintentresponsecode/userconfirmationrequired.md)
- [INStartCallIntentResponseCode.failure](intents/instartcallintentresponsecode/failure.md)
- [INStartCallIntentResponseCode.failureRequiringAppLaunch](intents/instartcallintentresponsecode/failurerequiringapplaunch.md)
- [INStartCallIntentResponseCode.failureCallingServiceNotAvailable](intents/instartcallintentresponsecode/failurecallingservicenotavailable.md)
- [INStartCallIntentResponseCode.failureContactNotSupportedByApp](intents/instartcallintentresponsecode/failurecontactnotsupportedbyapp.md)
- [INStartCallIntentResponseCode.failureAirplaneModeEnabled](intents/instartcallintentresponsecode/failureairplanemodeenabled.md)
- [INStartCallIntentResponseCode.failureUnableToHandOff](intents/instartcallintentresponsecode/failureunabletohandoff.md)
- [INStartCallIntentResponseCode.failureAppConfigurationRequired](intents/instartcallintentresponsecode/failureappconfigurationrequired.md)
- [INStartCallIntentResponseCode.failureCallInProgress](intents/instartcallintentresponsecode/failurecallinprogress.md)
