长按iPhone应用程序打开3个警报?警报视图或手势代码问题

时间:2013-03-31 07:02:38

标签: iphone ios uigesturerecognizer uialertview

在我的iPhone应用程序中,我设置了长按以显示警告框,当我长时间按下测试时会打开警报但是我必须在它消失之前单击“确定”3次。它是almsot,它打开了3个长按警报窗口,而不仅仅是一个。

我做错了什么?这是我用来处理长按的代码:

- (void)didLongPress_imageButton3:(UILongPressGestureRecognizer *)recognizer {
  UIAlertView *alertView = [[UIAlertView alloc] init];
  alertView.title = @"The Info";
  alertView.message = @"Details of what is in the project.";
  [alertView addButtonWithTitle:@"OK"];
  [alertView show];
  [alertView release];
}

0 个答案:

没有答案