Krelborn / KILabel

A simple to use drop in replacement for UILabel for iOS 7 and above that highlights links such as URLs, twitter style usernames and hashtags and makes them touchable.
MIT License
470 stars 133 forks source link

it's only working on break points ... #58

Open soufianeEssabbane opened 8 years ago

soufianeEssabbane commented 8 years ago

the handlers aren't called, only when it's in breakpoint ... and i don't have gesture organizers on my cells ... any idea ? thanks

MehulSojitra16 commented 7 years ago

Same issue here, any suggestions?

MehulSojitra16 commented 7 years ago

Solved it!! In my case i has added a TapGesture on screen. I have disable it for KILabel.

-- (BOOL)gestureRecognizer:(UIGestureRecognizer )gestureRecognizer shouldReceiveTouch:(UITouch )touch { if ([touch.view isKindOfClass:[KILabel class]]) { return NO; } return YES; }

And it's working... Don't know why it was working with break point.