I want to resize an image with the pan gesture. When I move to right, the image size should increase. And when I move to right, the image size should decrease.

My code:

<!-- language: lang-cpp -->
UIGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(pan:)];
[self.view addGestureRecognizer:pan];


(void)pan:(UIPanGestureRecognizer *)pan {
    CGPoint translation = [pan translationInView:self.view];

    switch (pan.state) {
        case UIGestureRecognizerStateBegan:

            x = icon1.center.x;

            prevPanValue = 0.0;
            currPanValue = 0.0;

            break;
        case UIGestureRecognizerStateChanged:

            currPanValue = translation.x;

            [icon1 setCenter:CGPointMake(x + translation.x, icon1.center.y)];


            distanceFromCenterWindowX = (icon1.center.x - centerWidnowX) / 100;

            if (distanceFromCenterWindowX > 0 && currPanValue > prevPanValue){ // il PAN è verso destra e l'immagine si trova a destra del centro ed il pan è continuo verso destra
                // rimpiccioliamo l'immagine
                [icon1 setBounds:CGRectMake(icon1.frame.origin.x, icon1.frame.origin.y, icon1.frame.size.width - distanceFromCenterWindowX, icon1.frame.size.height - distanceFromCenterWindowX)];
            }

            if (distanceFromCenterWindowX > 0 && currPanValue < prevPanValue){ // il PAN è verso destra e l'immagine si trova a destra del centro ed il pan è verso sinistra
                // ingrandiamo l'immagine
                [icon1 setBounds:CGRectMake(icon1.frame.origin.x, icon1.frame.origin.y, icon1.frame.size.width + distanceFromCenterWindowX, icon1.frame.size.height + distanceFromCenterWindowX)];
            }

            prevPanValue = translation.x;

            break;
        case UIGestureRecognizerStateEnded:

            break;
        default:
            break;
    }
}

The code above works if you move your finger very slow, but if you move fast, the image doesn't scale. Please help me.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.