Top "Xpc" questions

XPC is a low level library that simplifies inter process communication (IPC) on iOS and OS X.

XPC connection interrupted in Xcode 7 for iOS 9

I recently updated to Xcode 7 and upgraded my iPhone to iOS 9. I have developed and released an iOS app that …

iphone ios9 xcode7 xpc
Is possible to use Mac OS X XPC like IPC to exchange messages between processes? How?

According to Apple, the new XPC Services API, introduced in Lion, provides a lightweight mechanism for basic interprocess communication integrated …

macos ipc osx-lion sandbox xpc
CoreBluetooth XPC connection invalid

public class BLE: NSObject, CBCentralManagerDelegate { var centralManager:CBCentralManager! public override init() { super.init() self.centralManager = CBCentralManager.init(delegate: self, queue: …

swift core-bluetooth xpc
Communicate with another app using XPC

I have a windowed app, and to add some functionality I need another app which launches at login and sync …

macos cocoa helper xpc
How to send a message from XPC helper app to main application?

I was successful in creating XPC service and communicating with XPC service by sending messages from main application. But what …

macos cocoa xpc nsxpcconnection