美文网首页
NSImageView添加点击事件

NSImageView添加点击事件

作者: 皮蛋豆腐酱油 | 来源:发表于2019-10-16 18:07 被阅读0次
//
//  BackImageView.m 继承自NSImageView
//

#import "BackImageView.h"

@implementation BackImageView

- (void)mouseDown:(NSEvent *)event {
    [super mouseDown:event];
    [NSApp sendAction:@selector(clicked:) to:self from:self];
}

- (void)clicked:(id)sender {
    NSLog(@"Clicked!!!!");
    //点击事件
}

@end

参考:http://www.excel-jiqiao.com/subject/fpbenttx.html

相关文章

网友评论

      本文标题:NSImageView添加点击事件

      本文链接:https://www.haomeiwen.com/subject/fmiumctx.html