2011-04-09 70 views
0

可能重複槍王:
Double tap on a button上一個UIButton

您好,我找到foruns對我檢測2個水龍頭我用這個代碼:

- (void) touchesBegan:(NSSet *) touches withEvent:(UIEvent *) event 
{ 
    UITouch *touch = [touches anyObject]; 
    if (touch.tapCount == 2) 
    { 
     nosi=nosi-1; 
     if (nosi<10) { 
      nos.text = [NSString stringWithFormat:@"0%i", nosi]; 
     } else { 
      nos.text = [NSString stringWithFormat:@"%i", nosi]; 
     } 
    } 
} 

但是,如何檢測按鈕中的2個按鈕?

回答

0

子的UIButton並把這些代碼中)

,但我認爲這是一種奇怪的UI體驗,輕按兩下按鈕。

0

我今天回答了這個問題已經一次......

使用UITapGestureRecognizer ...

授予它僅適用於iOS版最近,不要嘗試在3.0;)