6

我正在开发像 Mac Mail 这样的应用程序。我有一个允许用户编写新消息的 WebView。我实现了拖放功能,以便用户可以通过这种方式将附件添加到消息中。

为了简单起见,我有一个包含 WebView 和其他视图的主视图。我在这个主视图上实现了拖放(使用 draggingEntered: 和 performDragOperation: 方法),它按预期工作。

问题是默认情况下,当在 WebView 中拖动文件时,例如图像,图像将显示在 WebView 中。但我不希望这样,我希望将其作为附件添加,这就是我禁用 WebView 内的拖放的原因:

  def webView(sender, dragDestinationActionMaskForDraggingInfo:draggingInfo)
    WebDragDestinationActionNone
  end

但是现在,如果我将文件拖动到主视图内的任何位置,WebView 除外(在这种情况下不调用 draggingEntered: 和 performDragOperation: 方法),现在我的文件将作为附件添加。

我不知道我的问题是否足够清楚可以找到答案,我还是 Cocoa 开发的新手,所以如果您需要更多详细信息,请随时告诉我。另一件事,我正在使用 Rubymotion,但是如果您在 Objective-C 中找到了解决方案,那也将是完美的!

感谢您的任何帮助或建议。

解决方案

我将 WebView 子类化并覆盖了该performDragOperation方法以使其工作:

def performDragOperation(sender)
  self.UIDelegate.mainView.performDragOperation(sender)
end
4

1 回答 1

1

您可以检查目标窗口的sender(实现NSDraggingInfo协议):

http://developer.apple.com/library/Mac/#documentation/Cocoa/Reference/ApplicationKit/Protocols/NSDraggingInfo_Protocol/Reference/Reference.html#//apple_ref/occ/intfm/NSDraggingInfo/draggingDestinationWindow

def performDragOperation(sender)
  if sender.draggingDestinationWindow == @web_view
    # Attach file
  else
    # Let it do the normal drag operation
  end
  true
end

这只是一个猜测,但您应该能够从这里找出解决方案。

于 2013-06-21T21:51:56.693 回答