I have:
UITouch *touch = [touches anyObject];
if ([touches count] == 2) {
//preforming actions
}
What I want to do Is ask it inside of the ifstatement where the two touches are seperatly.
You can iterate over the touches:
Edit: if you want to, say, find the distance between the two touches, and you know there are exactly two, you can grab each separately then do some math. Example: