peyton/MOOPullGesture

Calling wrong super method?

Closed this issue · 1 comments

In MOOPullGestureRecognizer.m, line 87, should -touchesEnded:withEvent: be calling super's -touchesEnded:withEvent:, rather than -touchesMoved:withEvent:?

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
{
    [super touchesMoved:touches withEvent:event];

Hahahaha. I'll fix this as soon as I'm able.

Thanks!

Sent from my iPad

On Mar 19, 2012, at 7:27 PM, Sixten Otto
reply@reply.github.com
wrote:

In MOOPullGestureRecognizer.m, line 87, should -touchesEnded:withEvent: be calling super's -touchesEnded:withEvent:, rather than -touchesMoved:withEvent:?

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
{
   [super touchesMoved:touches withEvent:event];

Reply to this email directly or view it on GitHub:
#1