gpt4 book ai didi

objective-c - XPCService 未从应用程序启动

转载 作者:太空狗 更新时间:2023-10-30 03:46:05 25 4
gpt4 key购买 nike

我正在 XPCServices 上尝试一个简单的示例应用程序,我在其中执行以下步骤:

第 1 步: 创建示例项目并添加目标 - XPCServices,名称为 - HelperProcess。创建目标时,XCode 会自动生成以下文件:

  1. HelperProcessProtocol.h
  2. HelperProcess.h
  3. HelperProcess.m
  4. main.m

第 2 步:main.m 中,在 ServiceDelegate 的实现中添加了一条日志语句:

- (BOOL)listener:(NSXPCListener *)listener shouldAcceptNewConnection:(NSXPCConnection *)newConnection {
// This method is where the NSXPCListener configures, accepts, and resumes a new incoming NSXPCConnection.
NSLog(@"Log which is never displayed :(");
// Configure the connection.
// First, set the interface that the exported object implements.
newConnection.exportedInterface = [NSXPCInterface interfaceWithProtocol:@protocol(HelperProcessProtocol)];

// Next, set the object that the connection exports. All messages sent on the connection to this service will be sent to the exported object to handle. The connection retains the exported object.
HelperProcess *exportedObject = [HelperProcess new];
newConnection.exportedObject = exportedObject;

// Resuming the connection allows the system to deliver more incoming messages.
[newConnection resume];

// Returning YES from this method tells the system that you have accepted this connection. If you want to reject the connection for some reason, call -invalidate on the connection and return NO.
return YES;
}

第 3 步:AppDelegate 中添加以下代码在 applicationDidFinishLaunching:

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
// Insert code here to initialize your application

_connectionToService = [[NSXPCConnection alloc] initWithServiceName:@"HelperProcess"];
_connectionToService.remoteObjectInterface = [NSXPCInterface interfaceWithProtocol:@protocol(HelperProcessProtocol)];
[_connectionToService resume];
}

问题是——

When I launch the app, neither the log added in listener:shouldAcceptNewConnection: is displayed nor the helper process appears in Activity Monitor :(

这是代码:XPCShootOut

注意:我正在 XCode 6.0 上尝试这个

我需要做任何额外的设置才能使其正常工作吗?请提出建议。

-- 更新--

我试图引用来自苹果的这个示例:AppSandboxLoginItemXPCDemo

当我尝试在 XCode 6 上运行它时,它显示错误消息 - “未找到签名身份”。由于我没有注册 mac 开发者帐户,在 iDecide 和 iDecideHelper 的build设置中,我将“代码签名身份”更改为“不代码签名”。

我收到了每个目标的警告:

Code Sign warning: CODE_SIGN_ENTITLEMENTS specified without specifying CODE_SIGN_IDENTITY. It is not possible to add entitlements to a binary without signing it.

这次当我编译构建时,它按预期工作。

现在我尝试按照其 ReadMe.txt 文件中指定的步骤进行操作,特别是我在我的示例应用程序中执行了这些步骤:

第 1 步:更新 - 主应用程序目标 -> 功能选项卡

  1. 启用“应用沙盒”
  2. 开启“应用组”
  3. 添加了一个应用程序组 -“XYZ”

第 2 步:更新 - Helper Target -> Capabilities 选项卡

  1. 启用“应用沙盒”
  2. 启用“传出连接(客户端)”
  3. 开启“应用组”
  4. 添加了一个应用程序组 -“XYZ”

第 3 步:更新 - Helper Target -> General Tab -> Bundle Identifier,为其添加“XYZ”前缀。

在控制台中运行该应用程序时,它会显示以下消息:

10/12/14 6:27:42.159 PM xpcd[554]: (null): Code identity[pid: 11875::Devarshi-Kulshreshtha.XPCShootOut (/Users/devarshi/Library/Developer/Xcode/DerivedData/XPCShootOut-aaedwraccpinnndivoaqkujcmhmj/Build/Products/Debug/XPCShootOut.app)] is not in ACL for container: ~/Library/Containers/Devarshi-Kulshreshtha.XPCShootOut/Data -- allowing access.

10/12/14 6:27:43.712 PM appleeventsd[63]: <rdar://problem/11489077> A sandboxed application with pid 11875, "XPCShootOut" checked in with appleeventsd, but its code signature could not be validated ( either because it was corrupt, or could not be read by appleeventsd ) and so it cannot receive AppleEvents targeted by name, bundle id, or signature. Error=ERROR: #100013 { "NSDescription"="SecCodeCopySigningInformation() returned 100013, -." } (handleMessage()/appleEventsD.cp #2072) client-reqs-q

应用程序既没有执行其预期功能,也没有显示在 listener:shouldAcceptNewConnection: 委托(delegate)中添加的日志消息。

我是无知的。请建议我是否遗漏了什么?是否可以在没有注册 mac 开发者帐户的情况下运行 XPC 服务示例应用程序?

最佳答案

我不认为你可以在没有签名的情况下启动 XPC 服务。

即使是为了测试和调试,也需要设置代码签名构建基础设施。

我认为 Mac 开发人员证书是免费的,您不需要付费帐户。

关于objective-c - XPCService 未从应用程序启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26292656/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com