ОК, я понял:
NSUInteger touchCount = 0;
for (UITouch *touch in touches) {
if(numTaps >= 2) {
CGPoint touchPoint = [touch locationInView:self];
if (CGRectContainsPoint([firstTapView frame], touchPoint)) {
firstTapView.text = [NSString stringWithFormat:@"%d",numTaps];
} else if (CGRectContainsPoint([secondTapView frame], touchPoint)) {
secondTapView.text = [NSString stringWithFormat:@"%d",numTaps];
} else if (CGRectContainsPoint([thirdTapView frame], touchPoint)) {
thirdTapView.text = [NSString stringWithFormat:@"%d",numTaps];
}
}
touchCount++;
}
, где firstTapView, secondTapView и thirdTapView - мои UILabels, показанные на экране.Пример Touches использует UIImageView, но я изменил его на UILabel, чтобы я мог писать, касаясь экрана.