I cannot find in the documentation how you call the hit test method? Is it called automatically as a delegate method? Or how would you call it? When I put the following code in a VC, it does not fire when you load or tap on the view. Thanks for any suggestions.
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
{
NSLog(@"hit test firing");
return self.view;
}