为什么NSApplicationDelegate方法openFiles:多次拖动到停靠图标时被多次调用?

时间:2016-06-03 21:29:48

标签: objective-c xcode cocoa nsapplication nsapplication-delegate

我有一个Mac OS X应用程序,它实现了 - (void)应用程序openFiles:方法来响应应用程序图标上的拖动文件。我在目标信息设置的文档类型部分中有一个允许的文件类型列表,并且Finder确实允许拖动,但是当pdf在拖动项目列表中时,我的委托方法被调用两次:一个用于所有元素而没有pdf,仅用于PDF。这当然使我无法正确处理这种情况。任何人都可以帮助我或解释发生了什么?感谢

1 个答案:

答案 0 :(得分:7)

我在其中一个应用中看到了这种行为(通常是一次拖动一大堆文件)。当我解决方法时,不是直接从application:openFiles:打开文件,而是将它们排队并在稍微延迟后打开排队的文件。如下所示:

- (void) application:(NSApplication*)sender openFiles:(NSArray*)filenames
{
    // I saw cases in which dragging a bunch of files onto the app
    // actually called application:openFiles several times, resulting
    // in more than one window, with the dragged files split amongst them.
    // This is lame.  So we queue them up and open them all at once later.
    [self queueFilesForOpening:filenames];

    [NSApp replyToOpenOrPrint:NSApplicationDelegateReplySuccess];
}


- (void) queueFilesForOpening:(NSArray*)filenames
{
    [self.filesToOpen addObjectsFromArray:filenames];
    [self performSelector:@selector(openQueuedFiles) withObject:nil afterDelay:0.25];
}


- (void) openQueuedFiles
{
    if( self.filesToOpen.count == 0 ) return;

    [self makeNewWindowWithFiles:self.filesToOpen];

    [self.filesToOpen removeAllObjects];
}