Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 7 (iOS 9) Communications error: <OS_xpc_error: <error: 0x10a1abb40>

Can any one help me to figure out the following error I get when I run my application?

Communications error: <OS_xpc_error: <error: 0x10a1abb40> { count = 1,
contents = "XPCErrorDescription" => <string: 0x10a1abef0> { length =
22, contents = "Connection interrupted" } }>
like image 419
Vaisakh Avatar asked Oct 13 '15 13:10

Vaisakh


1 Answers

If you are running your app in iOS simulator it uses XPC Services API for interprocess communication and any breakpoint or other interruptions can cause such an error.

You can refer to this Apple Doc

In the section Handling Errors

Interruption handler—called when the process on the other end of the connection has crashed or has otherwise closed its connection.

The debugging of app on device should not have such problems.

like image 154
Yuri Kobets Avatar answered Sep 30 '22 01:09

Yuri Kobets