NSImageView双击动作

时间:2012-12-19 21:18:26

标签: xcode nsimageview

我的Mac App中有一些NSImageView,用户可以拖放.png或.pdf之类的对象,将它们存储到用户共享默认值中,工作正常。

我现在想设置一个动作,当用户双击这些NSImageView时,但它似乎有点困难(我对NSTableView没有任何麻烦,但是'setDoubleAction'不适用于NSImage,而且很多答案(这里或谷歌)有关NSImageView的动作指向制作NSButton而不是NSImageView,所以这没有帮助)

以下是我的AppDelegate.h的一部分:

@interface AppDelegate : NSObject <NSApplicationDelegate>{

    (...)

    @property (assign) IBOutlet NSImageView *iconeStatus;

    (...)

@end

这是我AppDelegate.m的一部分:

#import "AppDelegate.h"

@implementation AppDelegate

(...)

@synthesize iconeStatus = _iconeStatus;

(...)

- (void)awakeFromNib {

    (...)

[_iconeStatus setTarget:self];
[_iconeStatus setAction:@selector(doubleClick:)];

    (...)

}

(...)

- (void)doubleClick:(id)object {
        //make sound if that works ...
        [[NSSound soundNamed:@"Basso"] play];

}

但这不起作用。

有人能告诉我这是最简单的方法吗?

3 个答案:

答案 0 :(得分:13)

您需要子类化NSImageView并将以下方法添加到子类的实现中:

- (void)mouseDown:(NSEvent *)theEvent
{
    NSInteger clickCount = [theEvent clickCount];

    if (clickCount > 1) {
        // User at least double clicked in image view
    }
}

答案 1 :(得分:1)

Swift的代码4.再次对NSImageView进行子类化,并重写mouseDown函数。

class MyImageView: NSImageView {

    override func mouseDown(with event: NSEvent) {
        let clickCount: Int = event.clickCount

        if clickCount > 1 {
            // User at least double clicked in image view
        }
    }

}

答案 2 :(得分:1)

使用extension的另一种解决方案:

extension NSImageView {
    override open func mouseDown(with event: NSEvent) {
        // your code here
    }
}

尽管这会将功能添加到每个NSImageView中,所以也许这不是您想要的。