gpt4 book ai didi

Swift 4 粘贴板到 Finder

转载 作者:可可西里 更新时间:2023-11-01 02:00:17 24 4
gpt4 key购买 nike

MacOS 10.12 上的 Finder 接受哪些粘贴板类型?下面的代码让我拖到其他应用程序(如终端和 Sublime),但 Finder 不接受它。是 PasteboardType 的问题,还是我遗漏了什么?

override func viewDidLoad() {
super.viewDidLoad()
mediaInUseTableView.setDraggingSourceOperationMask(NSDragOperation.every, forLocal: false)
}
func tableView(_ tableView: NSTableView, writeRowsWith rowIndexes: IndexSet, to pboard: NSPasteboard) -> Bool {
var urls = [NSURL]()
var types = [NSPasteboard.PasteboardType]()
// types.append(NSPasteboard.PasteboardType(kUTTypeURL as String))
// types.append(NSPasteboard.PasteboardType("NSURLPboardType"))
types.append(NSPasteboard.PasteboardType("NSFilenamesPboardType"))
// types.append(NSPasteboard.PasteboardType.string)
for row in rowIndexes{
urls.append(self.mediaInUses[row].url.absoluteURL as NSURL)
// types.append(NSPasteboard.PasteboardType.fileNameType(forPathExtension: self.mediaInUses[row].url.pathExtension))
}
pboard.declareTypes(types, owner: nil)
pboard.writeObjects(urls)
return true
}

一些更有前途的类型似乎不适合我的环境:

NSFilenamesPboardType
'NSFilenamesPboardType' is unavailable in Swift: use 'PasteboardType.fileURL'
NSPasteboard.PasteboardType.fileURL
'fileURL' is only available on OS X 10.13 or newer

最佳答案

我花了几个小时分析 Finder 自己拖放到我的应用程序中的数据,并尝试了 .declareTypes、.setPropertyList 和 .setData 中对象的无数变体。我让它工作了一次(!),然后在同一代码上再次中断。无奈之下我也改用了 Swift 3.2。今天,我意识到 .writeObjects 应该根据其输入自动执行上述所有操作,并测试了一个最小的实现,它与其他应用程序一起工作得很好。当这在 Finder 中不起作用时,我确信问题一定出在其他地方。

假设:由于尝试无效,Finder 将我的应用程序列入黑名单。

解决方法:重启电脑,Finder突然接受拖拽了!

我昨天也重启了几次,但那时我的实现可能很糟糕。

最小实现(Swift 3/4):

// Enable drag to other applications:
tableView.setDraggingSourceOperationMask(NSDragOperation.every, forLocal: false)
// Serve data for dragged table rows:
func tableView(_ tableView: NSTableView, writeRowsWith rowIndexes: IndexSet, to pboard: NSPasteboard) -> Bool {
// Prepeare data:
var arrayOfNSURLs = [NSURL]()
for rowIndex in rowIndexes{
arrayOfNSURLs.append(self.mediaFiles[rowIndex].url.absoluteURL as NSURL)
}
// Let API write objects automatically:
pboard.writeObjects(arrayOfNSURLs)
return true
}

这是我的完整实现(Swift 3/4):

override func viewDidLoad() {
super.viewDidLoad()
// Enable global drag (to other applications)
mediaFilesTableView.setDraggingSourceOperationMask(NSDragOperation.every, forLocal: false)
sourceClipsTableView.setDraggingSourceOperationMask(NSDragOperation.every, forLocal: false)
}
func tableView(_ tableView: NSTableView, writeRowsWith rowIndexes: IndexSet, to pboard: NSPasteboard) -> Bool {
if tableView == self.mediaFilesTableView {
var arrayOfNSURLs = [NSURL]()
for row in rowIndexes{
arrayOfNSURLs.append(self.mediaFiles[row].url.absoluteURL as NSURL)
}
pboard.writeObjects(arrayOfNSURLs)
return true
}
if tableView == self.sourceClipsTableView {
var names = [NSString]()
var info = ""
for row in rowIndexes{
info = "\(self.sourceClips[row].mediaFiles.count)"
if info == "0"{
info = "MISSING"
}
names.append(self.sourceClips[row].name.padding(toLength: 30, withPad: " ", startingAt: 0) + info as NSString)
}
pboard.writeObjects(names)
return true
}
return false
}

编辑:切换回 Swift 4,这些行似乎与 Swift 3 中的相同。

关于Swift 4 粘贴板到 Finder,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46956720/

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