How to poll iOS touches faster than the screen refresh rate

On newer iphones, the screen has a touch sampling rate of 120hz. What I want to do is create a 120hz timer and get the state of the touchscreen every time it re-samples. Can i even do this?

I know [UIEvent coalescedTouchesForTouch:] exists but that doesn’t tell me which 120hz window each touch was recorded in, which is vital info to me.

How to poll iOS touches faster than the screen refresh rate
 
 
Q