nextButton
仅响应第一次单击。
我需要实施其他方法来识别更多点击吗?
nextButton.TouchUpInside += (s, e) =>
{
};
最佳答案
设置nextButton.MultipleTouchEnabled = true
(或在Swift 3中为nextButton.isMultipleTouchEnabled = true
)以允许一次处理多个触摸。
关于c# - TouchUpInside不能识别一键以上,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41805066/