0

The nextButton only responds to the first click.

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

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

};
Draken
  • 3,134
  • 13
  • 34
  • 54
joshii_h
  • 1,583
  • 3
  • 14
  • 24
  • Possible duplicate of [multiple touch in xcode iOS objective C](http://stackoverflow.com/questions/32142109/multiple-touch-in-xcode-ios-objective-c) – return true Jan 23 '17 at 11:21

1 Answers1

0

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

return true
  • 7,839
  • 2
  • 19
  • 35