My Cocoa应用程序需要处理Get URL事件。我想我正确地按照this answer中的步骤修改了Info.plist并写了&注册URL处理程序方法。
问题:
当我的应用程序运行时,我在Safari中运行mytesturl://任何内容,它会弹出一个窗口,询问我是否要打开我的应用程序。如果我说是的话,似乎没有任何事情发生,除了在码头上瞬间出现一个图标。所以它可能会尝试启动我的应用程序的另一个实例,而不是向正在运行的实例发送消息?
当我在Firefox中执行相同操作时,会弹出一个窗口,要求我选择一个应用程序。那么自定义URL协议不会在所有浏览器中都有效吗?
Info.plist:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
...
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>My test URL</string>
<key>CFBundleURLSchemes</key>
<array>
<string>mytesturl</string>
</array>
</dict>
</array>
...
</dict>
</plist>
源代码:
#import <Cocoa/Cocoa.h>
#include <stdio.h>
@interface Test : NSObject
{
}
- (void)test;
- (void)handleEvent:(NSAppleEventDescriptor *)event withReplyEvent:(NSAppleEventDescriptor *)replyEvent;
@end
@implementation Test
- (void)test
{
NSLog(@"Started...");
char c;
scanf("%c", &c);
}
- (void)handleEvent:(NSAppleEventDescriptor *)event withReplyEvent:(NSAppleEventDescriptor *)replyEvent
{
NSURL *url = [NSURL URLWithString:[[event paramDescriptorForKeyword:keyDirectObject] stringValue]];
NSLog(@"url = %@", url);
}
@end
int main(int argc, char *argv[])
{
Test *app=[[Test alloc] init];
[[NSAppleEventManager sharedAppleEventManager] setEventHandler:app andSelector:@selector(handleEvent:withReplyEvent:) forEventClass:kInternetEventClass andEventID:kAEGetURL];
[app test];
return 0;
}
答案 0 :(得分:2)
NSAppleEventManager
需要NSApplication
个实例才能运行。
尝试将Test
作为NSApplication
的子类,并将main
更改为以下内容:
id app = [NSApplication sharedApplication];
[[NSAppleEventManager sharedAppleEventManager] setEventHandler:app andSelector:@selector(handleEvent:withReplyEvent:) forEventClass:kInternetEventClass andEventID:kAEGetURL];
[app run];