我有一个 NSCustomView,其中一个 NSImage 放置在自定义矩形中。如何在 mousedown 事件中检查某个点是否在此图像内?
像这样的东西:
- (void)mouseDown:(NSEvent *)theEvent {
NSPoint point = [self convertPoint:[event locationInWindow] fromView:nil];
if ([myImage containspoint:point]) {
...do stuff...