Re: detecting mouseDrag event in NSView
Re: detecting mouseDrag event in NSView
- Subject: Re: detecting mouseDrag event in NSView
- From: "Stephen Deken" <email@hidden>
- Date: Wed, 27 Sep 2006 07:43:43 -0500
Is there any way to detect mouse dragged event in NSView.
I used the mouseDragged event but it is not working.
I don't know what the mouseDragged event is, but the -[mouseDragged:]
selector is, in fact, how to detect that the mouse is being dragged
inside the view. Try:
-(void) mouseDragged:(NSEvent*)e
{
NSLog( @"mouse is being dragged" );
}
Unless you post even a snippet of your code, there's not much we can
do to help you.
--sjd;
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden