Receiving touch events on several stacked UIView simultaneously.
Hi everyone. I have several UIViews stacked one upon the other, and i want them all to react to touch. But it seems that the topmost view obscures the views beneath it, preventing them from reciving touch events.
At first i thought i’d catch all touch events on the topmost view, and then manually call hitTest, or pointInside methods on all the underlying views, but i found out that both hitTest and pointInside are somehow private methods (could it be?) and cannot be accessed outside the instance of the UIView.
Any ideas how to i pull it off?
|