gpt4 book ai didi

macos - osx 拖动不起作用

转载 作者:行者123 更新时间:2023-11-28 09:06:26 24 4
gpt4 key购买 nike

我想创建一个使用 swift 的拖动操作的最小工作示例。但是,到目前为止,这并不是很好。没有调用 NSDraggingDestination 函数,但我无法发现我的错误:(

class DragView : NSView , NSDraggingDestination {


required init?(coder: NSCoder) {
println("init")
super.init(coder: coder)
let theArray = NSImage.imageFileTypes()
self.registerForDraggedTypes(theArray)
}

override func draggingEntered(sender: NSDraggingInfo) -> NSDragOperation {
println("draggingEntered")
return NSDragOperation.Copy
}


override func draggingUpdated(sender: NSDraggingInfo) -> NSDragOperation {
println("draggingUpdated")
return NSDragOperation.Copy
}

override func prepareForDragOperation(sender: NSDraggingInfo) -> Bool {
println("prepareForDragOperation")
return true
}
}

最佳答案

NSImage.imageFileTypes() 不是 self.registerForDraggedTypes 的有效数组。

例如尝试使用 [NSFilenamesPboardType]

required init?(coder: NSCoder) {
println("init")
super.init(coder: coder)
self.registerForDraggedTypes([NSFilenamesPboardType])
}

关于macos - osx 拖动不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30595700/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com