TouchUpInside doesn't recognize more than one click

83 Views Asked by At

The nextButton only responds to the first click.

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

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

};
1

There are 1 best solutions below

0
On BEST ANSWER

Set nextButton.MultipleTouchEnabled = true (or, in Swift 3, nextButton.isMultipleTouchEnabled = true) to allow multiple touches to be processed at once.