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