- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [touches anyObject];
CGPoint currentPoint = [touch locationInView:self.view];
NSLog("%f %f",currentPoint.x,currentPoint.y);
}
i want to developed a paint app for my ipad. when i use these code and use finger to paint a line on my pad, it's print (x,1),(x,3),(x,6),(x,7),(x,12),(x,15),(x,18)....
in my thought,it should print (x,1),(x,2),(x,3),(x,4),(x,5),(x,6),(x,7),(x,8),(x,9),(x,10),(x,11),(x,12),(x,13),(x,14),(x,15),(x,16),(x,17),(x,18)....
touchesMoved can not get continued coordinate ?