In the touchesBegin, touchesMoved and touchesEnded methods, I set the center of the image view:
[myImageView setCenter:CGPointMake(location.x, location.y)];
The problem is that there's a lag between the quick finger gestures and the image changing its location. I want the image to immediately follow the finger's location without any lag.
I even tried to skip minor location changes in order to keep the image's location concurrent with the finger's location but it wasn't of much help.
int diff1=(location.x-oldX);
int diff2=(location.y-oldY);
if (abs(diff1)>=5 || abs(diff2)>=5 || abs(diff1)%5==0 || abs(diff2)%5==0)
{
[myImageView setCenter:CGPointMake(location.x, location.y)];
}
Is there a way to improve it in Cocoa Touch? If not then should I switch to CoreGraphics or cocos2d etc.?
Help with example code snippets will be appreciated.