The nextButton
only responds to the first click.
Do I need to implement something else to recognize more clicks?
nextButton.TouchUpInside += (s, e) =>
{
};
Set nextButton.MultipleTouchEnabled = true
(or, in Swift 3, nextButton.isMultipleTouchEnabled = true
) to allow multiple touches to be processed at once.