[iOS] Now recognisers work if user after scaling starts draging

This commit is contained in:
Kirill Zhdanovich 2013-03-01 15:48:17 +03:00 committed by Alex Zolotarev
parent c68e1b3ad3
commit 2f22518cdd

View file

@ -593,16 +593,27 @@
{
if (recognizer.state == UIGestureRecognizerStateChanged)
{
if (startedScaling)
{
f.StopScale(ScaleEvent(p1.x, p1.y, p2.x, p2.y));
startedScaling = NO;
}
if (startedScaling)
{
f.StopScale(ScaleEvent(p1.x, p1.y, p2.x, p2.y));
CGPoint z = [self pointFromRecognizerWithScaleFactor:recognizer];
f.StartDrag(DragEvent(z.x, z.y));
startedScaling = NO;
lastRotateTime = 0;
}
else
{
[self handlePan:(UIPanGestureRecognizer *)recognizer];
}
}
if (recognizer.state != UIGestureRecognizerStateEnded)
{
return;
}
else if (!startedScaling)
{
[self handlePan:(UIPanGestureRecognizer *)recognizer];
}
}
//Work of Scale Recognizer