我有一个包含几个NSWindowController
的NSViewControllers
。我想普遍接受使用NSWindowController类的拖放事件,而不是被其他视图拦截,例如NSTextView
(包含在NSViewController
中)
我如何告诉NSTextView
忽略拖放事件?
我发现有两件事需要跳过NSTextView
拦截拖放事件。
在包含你的NSViewController
的NSTextView
中:
- (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处理。
将NSTextView子类化并覆盖其acceptableDragTypes
属性的getter就足够了,不需要unregisterDraggedTypes
。在Swift中:
override var acceptableDragTypes : [String] {
return [String]()
}
稍微更新。
import Cocoa
class MyTextView : NSTextView {
// don't accept any drag types into the text view
override var acceptableDragTypes : [NSPasteboard.PasteboardType] {
return [NSPasteboard.PasteboardType]()
}
}
斯威夫特5
import Cocoa
class NSTextViewNoDrop: NSTextView {
override var acceptableDragTypes: [NSPasteboard.PasteboardType] { return [] }
}