Ich habe den folgenden Code:
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
NSUInteger touchCount = 0;
// Enumerates through all touch objects
for (UITouch *touchb in touches){
touchCount++;
}
// When multiple touches, report the number of touches.
if (touchCount > 1) {
lblStatustouch.text = [NSString stringWithFormat:@"Tracking %d touches", touchCount];
} else {
lblStatustouch.text = [NSString stringWithFormat:@"Tracking 1 touch", touchCount];
}
Wenn ich es ausführe, erkennt es nie mehr als eine Berührung. Gibt es eine Einstellung, die verhindert, dass meine App mehrere Berührungen erfasst? Oder übersehe ich hier etwas?