Track the same UITouch Object
You can track the same UITouch object by comparing each UITouch object’s hash.
NSUInteger touchHash = [touch hash]; // UITouch *touch
You can track the same UITouch object by comparing each UITouch object’s hash.
NSUInteger touchHash = [touch hash]; // UITouch *touch
Cool.
But every time I have the [touch hash] I have different numbers on the same object.
Is that correct?
You will get a new hash value for every touchBegan.