gpt4 book ai didi

swift - MouseDown 事件阻止 NSCollectionView 委托(delegate)方法

转载 作者:搜寻专家 更新时间:2023-11-01 05:35:13 25 4
gpt4 key购买 nike

我想通过双击 NSCollectionView 中的一个项目来实现一个 Action 。在 NSCollectionViewItem 中使用 mouseDown 事件时,不再触发 Collection View 委托(delegate)方法,items 属性 isSelected 也不起作用:

NSCollectionViewItem.swift 中的mouseDown 事件:

override func mouseDown(with event: NSEvent) {

if event.clickCount > 1 {
//do something
}
}

我需要如何同时处理 CollectionViewItemsCollectionView 委托(delegate)方法上的点击事件?

除了NSTableviewNSOutlineView 之外,NSCollectionView 没有实现doubleAction 方法。这是可悲的。

谢谢!

最佳答案

如果你覆盖了mouseDown(with event: NSEvent),那么记得在里面调用super.mouseDown(with: event);否则,您的 collectionView 委托(delegate)方法将不会被调用。

我回答这个问题并不是要窃取上面评论中的@Willeke 解决方案,而只是因为我不想让其他人错过他的评论(完全正确)!如果 Willeke 想回答,我会删除它。

关于swift - MouseDown 事件阻止 NSCollectionView 委托(delegate)方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42347222/

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