We have an app in AppStore Bust~A~Spook we had an issue with. When you tap the screen we use CALayer to find the position of all the views during their animation and if you
If you're doing any sort of core-animation animation of the CALayer
s at the same time as you're hit-testing, you must get the presentationLayer
before calling hitTest:
, as the positions of the model layers do not reflect what might be on screen, but the positions to which the layers are animating.
Hope that helps.