(to RickMaddy) you're right, I was just thinking that after I posted.
I need to get continuous coordinates for a touch while it is moving so I am trying to call locationInView during touchesMoved and saving it to a point with.
Point a;
a = locationInView;
or a = locationInView(nil) to get the coordinate in reference to the whole window.
I get an error "'locationInview' undeclared (first use in this function)
Is touchesMoved the right place to be trying to get this information? Thanks.
|