作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个拖动操作,只允许拖动单个文件,我想在“draggingEntered”上捕获它,如下所示:
- (NSDragOperation)draggingEntered:(id<NSDraggingInfo>)sender {
if ([[sender draggingPasteboard] count]] == 1) {
return NSDragOperationCopy;
}
else {
return NSDragOperationNone;
}
}
但是 count 不是有效的方法或属性,但我不知道用什么来替换它,所以这是查看 DraggingPasteboard 上有多少项目的最佳方法?我是否应该使用诸如 propertyListForType: NSFilenamsPboardType 之类的方法获取 DraggingPasteboard 上的文件名数组,然后获取其索引,或者是否有更聪明的方法来执行此操作?
最佳答案
如果你想使用计数,你需要使用pasteboardItems
,它是响应计数的项目数组。
可以这样完成:
- (NSDragOperation)draggingEntered:(id<NSDraggingInfo>)sender {
if([[[sender draggingPasteboard] pasteboardItems] count] == 1) {
return NSDragOperationCopy;
}
else {
return NSDragOperationNone;
}
}
关于xcode - 如何查看draggingPasteboard中有多少个文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10697979/
我是一名优秀的程序员,十分优秀!