TouchUpInside 无法识别多次点击

TouchUpInside doesn't recognize more than one click

nextButton 只响应第一次点击。

我是否需要实施其他方法来识别更多点击?

nextButton.TouchUpInside += (s, e) =>
{

};

设置nextButton.MultipleTouchEnabled = true(或者,在Swift3中,nextButton.isMultipleTouchEnabled = true)以允许一次处理多个触摸。