KILabel
KILabel copied to clipboard
it's only working on break points ...
the handlers aren't called, only when it's in breakpoint ... and i don't have gesture organizers on my cells ... any idea ? thanks
Same issue here, any suggestions?
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.