我在我的应用程序中添加了一个 UITapGestureRecognizer 来检测双击手势。
UITapGestureRecognizer *tapgr = [[UITapGestureRecognizer alloc]
initWithTarget:self action:@selector(handleTapGesture:)];
tapgr.numberOfTaps = 2;
tapgr.delegate = self;
[_view addGestureRecognizer:tapgr];
[tapgr release];
除非我在我的应用程序中显示工具提示,否则这工作正常。它们是这样设置的:
[_view.toolTipView addTarget:self action:@selector(handleTap:) forControlEvents:UIControlEventTouchUpInside];
在引入我的手势识别器之前,这些工具提示可以点击并做出反应,现在它们不再有反应了......
如何使手势识别器和标准 UIControlEventTouchUpInside-Setup 一起工作?