如何使用自定义URL方案将Get URL事件发送到正在运行的应用程序?

时间:2010-10-26 14:48:27

标签: objective-c cocoa

My Cocoa应用程序需要处理Get URL事件。我想我正确地按照this answer中的步骤修改了Info.plist并写了&注册URL处理程序方法。

问题:

  1. 当我的应用程序运行时,我在Safari中运行mytesturl://任何内容,它会弹出一个窗口,询问我是否要打开我的应用程序。如果我说是的话,似乎没有任何事情发生,除了在码头上瞬间出现一个图标。所以它可能会尝试启动我的应用程序的另一个实例,而不是向正在运行的实例发送消息?

  2. 当我在Firefox中执行相同操作时,会弹出一个窗口,要求我选择一个应用程序。那么自定义URL协议不会在所有浏览器中都有效吗?

  3. 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;   
    }
    

1 个答案:

答案 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];