简体   繁体   中英

TouchUpInside doesn't recognize more than one click

The nextButton only responds to the first click.

Do I need to implement something else to recognize more clicks?

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

};

设置nextButton.MultipleTouchEnabled = true (或者在Swift 3中,将nextButton.isMultipleTouchEnabled = true )设置为一次处理多个触摸。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM