Hi,
I was trying to make a CCHLinkTextView scrollable but i found that it only scrolls when you scroll on top of the Links, if you try to scroll outside of the links, the method pointInside is returning False so the scroll gesture is not getting called.
-(BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event
{
BOOL linkFound = [self enumerateLinkRangesContainingLocation:point usingBlock:NULL];
return linkFound;
}
Hi,
I was trying to make a CCHLinkTextView scrollable but i found that it only scrolls when you scroll on top of the Links, if you try to scroll outside of the links, the method pointInside is returning False so the scroll gesture is not getting called.
-(BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event{BOOL linkFound = [self enumerateLinkRangesContainingLocation:point usingBlock:NULL];return linkFound;}