Check the coordinates in the touchesMoved event.
Code:
//Taken from what you posted
UITouch *touch = [[event allTouches] anyObject];
CGPoint location = [touch locationInView:touch.view];
"location" has the coordinates of the touch, and if you're unsure of how to get the coordinates for "one", the documentation should have everything you need.