In Appdelegate.m after this code
I add
- (void)mouseDown:(NSEvent *)event{
NSLog(@"Hi");
}
But i am not getting the event's triggered
My Question is what should i do in Appdelegate.m so that when a user clicks on the Window the mouseDown event gets triggered?
That's much it.