如何禁用NSTextView上的拖放?

问题描述 投票:1回答:4

我有一个包含几个NSWindowControllerNSViewControllers。我想普遍接受使用NSWindowController类的拖放事件,而不是被其他视图拦截,例如NSTextView(包含在NSViewController中)

我如何告诉NSTextView忽略拖放事件?

drag-and-drop nstextview nswindowcontroller nsviewcontroller
4个回答
6
投票

我发现有两件事需要跳过NSTextView拦截拖放事件。

在包含你的NSViewControllerNSTextView中:

- (void)awakeFromNib
{
    [self noDragInView:self.view];
}

- (void)noDragInView:(NSView *)view
{
    for (NSView *subview in view.subviews)
    {
        [subview unregisterDraggedTypes];
        if (subview.subviews.count) [self noDragInView:subview];
    }
}

现在继承你的NSTextView并添加这个方法:

- (NSArray *)acceptableDragTypes
{
    return nil;
}

NSTextView现在应该正确地忽略拖放事件并让它由NSWindow处理。


4
投票

将NSTextView子类化并覆盖其acceptableDragTypes属性的getter就足够了,不需要unregisterDraggedTypes。在Swift中:

override var acceptableDragTypes : [String] {
    return [String]()
}

0
投票

稍微更新。

import Cocoa

class MyTextView : NSTextView {
    // don't accept any drag types into the text view
    override var acceptableDragTypes : [NSPasteboard.PasteboardType] {
        return [NSPasteboard.PasteboardType]()
    }
}

0
投票

斯威夫特5

import Cocoa

class NSTextViewNoDrop: NSTextView {

    override var acceptableDragTypes: [NSPasteboard.PasteboardType] { return [] }

}
© www.soinside.com 2019 - 2024. All rights reserved.