使用 mach 端口的 Theos 应用程序间通信

Theos inter-app communication using mach ports

我正在尝试在 iOS 8.

上的应用程序和控制台应用程序之间发送数据(使用 theos)

我试过:

申请:

CFMessagePortRef port = CFMessagePortCreateLocal(kCFAllocatorDefault, CFSTR("co.test"), &message_callback, NULL, NULL);

这很好用。 NSLog(@"%@", port) returns:

<CFMessagePort 0x17018bef0 [0x198094f50]>{locked = Maybe, valid = Yes, remote = No, name = co.test, source = 0x0, callout = message_callback (0x1000e979c), context = <CFMessagePort context 0x0>}

然而,当尝试在控制台应用程序上做同样的事情时:

CFMessagePortRef port = CFMessagePortCreateLocal(kCFAllocatorDefault, CFSTR("co.test"), &message_callback, NULL, NULL);

我总是得到错误:

*** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) 'Permission denied', port = 0xc03, name = 'co.test'

即使我对两者使用相同的 com.apple.security.application-groups 权利:

<key>com.apple.security.application-groups</key>
<array>
    <string>co.test</string>
</array>

任何人都可以阐明 - 也许以上是一种糟糕的方法,我缺少一种更简单的方法来实现我的目标?

我的目标是能够在 SpringBoard 上的应用 运行 和使用 theos 构建的守护程序之间传递 NSDictionary。

注意:我无意在应用商店中分发此应用

Application: .......CFSTR("co.test")
Console App: ... CFSTR("co.test")

您需要在应用程序组标识符的末尾附加一个额外的字符串。

Apple:

Mach port names must begin with the application group identifier, followed by a period (.), followed by a name of your choosing.

For example, if your application group’s name is Z123456789.com.example.app-group, you might create a Mach port named Z123456789.com.example.app-group.Port_of_Kobe.

CFMessagePort and sandboxing

如果您使用相同的消息端口名称创建多个消息端口,似乎会发生另一个崩溃。也许来自具有相同捆绑包 ID 的应用程序或其他一些情况,其中应该只有一个消息端口并且一个已经 运行ning.

当我 运行 我的 macOS 应用程序的一个版本来自 /Applications/,另一个版本来自 Xcode 时,我注意到了。

*** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) 'Permission denied', port = 0xcd07, name = 'XXXYYYZZZZ.MyAppGroupName'