1

IKImageBrowserView在仅 Mac 10.9 的应用程序中使用 a 。

当我双击项目中的项目时,IKImageBrowserView该项目在预览中打开。

我想更改此行为并打开我自己的应用程序的窗口,其中包含有关双击项目的详细信息。

我怎样才能简单地禁用IKImageBrowserView的双击行为?
添加我自己的双击行为的最佳方法是什么?

4

1 回答 1

1

根据 apple docs,您需要设置一个委托IKImageBrowserView,您可以在方法中添加您的自定义实现cellWasDoubleClicked

- (void) imageBrowser:(IKImageBrowserView *) aBrowser cellWasDoubleClickedAtIndex:(NSUInteger) index {
    // This method signals that the user double-clicked an item in the image browser view. 
    // You can implement this method if you want to perform custom tasks at that time.
}
于 2014-05-23T13:14:04.477 回答