应用程序如何响应OSX上的拖放操作

时间:2012-06-14 05:13:29

标签: macos drag-and-drop

假设我想创建一个应用程序,以响应从停靠点拖放。基本上,假设我将.pdf从桌面拖到停靠在底座上的应用程序中。接收该行动并对其做出反应有什么功能?

1 个答案:

答案 0 :(得分:1)

在App Delegate中:

- (void)application:(NSApplication *)sender openFiles:(NSArray *)filenames

当然也需要这样做:enter image description here