到目前为止,我的 View 控制器工作正常,除了一件事:我有几个 MouseEvents 和一些火,而另一些则没有。
- (void)mouseWasHeld: (NSTimer *)tim {
**// this works not**
}
- (void) mouseMoved:(NSEvent*)someEvent {
**// this works not**
}
-(void)mouseDown:(NSEvent *)event {
// this works
}
-(void)mouseDragged:(NSEvent *)event {
// this works
}
-(void)mouseUp:(NSEvent *)event {
// this works
}
我不明白为什么两个事件没有触发任何线索?
非常感谢罗纳德