Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

While my user is dragging his finger while holding down a UIButton, can I get the touch location for the finger at that point? If I can't do this it seems that I could probably create a UIImageView and give it button qualities. After this I would implement the touches began, moved, ended methods.

These methods; however, do not run while a UIButton has been touched.

The reason I need this is because I wanted to find out the direction of a touch drag outside movement, and for various other reasons too, but if this is impossible I will have to create UIImageViews I think.

Also, I do not subclass UIButton, I am too much beginner to take on apples clusters.

share|improve this question
You may just want to add a gesture recogniser for this. – hypercrypt Aug 11 '12 at 4:30
Just accept the answer this will also increase your rep :) and acceptance rate which helps you to get more response and good answers :) – Wolvorin Aug 11 '12 at 11:05

1 Answer

up vote 3 down vote accepted

you should following this:

[myButton addTarget:self action:@selector(dragHandler:withEvent:) forControlEvents:UIControlEventTouchDragInside];
[myButton addTarget:self action:@selector(dragHandler:withEvent:) forControlEvents:UIControlEventTouchDragOutside];

-(void)dragHandler:(UIButton *)sender withEvent:(UIEvent *)event
{
    UITouch *touch = [[event allTouches] anyObject];

    NSLog(@"touchInfo:%@", NSStringFromCGPoint([touch locationInView:self.view]);
}
share|improve this answer
thats interesting man, thanks! – theSecondOwnageGuy Aug 11 '12 at 4:29
wish i could thumb you up but only have a 1 rep – theSecondOwnageGuy Aug 11 '12 at 4:29
if it help to you. Please click on V accept. – bitmapdata.com Aug 11 '12 at 4:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.