I am looking for a simple way to detect when the user starts to touch the screen regardless of whether they are touching on a UIButton or elsewhere on the screen.
If I use touchesBegan(...
on my ViewController, it does not detect touches on controls like UIButtons.
There is UITapGesturReconizer
on ViewController but that would fire only when the tap has completed. I am looking to detect when any touch begins.