KILabel icon indicating copy to clipboard operation
KILabel copied to clipboard

it's only working on break points ...

Open soufianeEssabbane opened this issue 9 years ago • 2 comments

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

soufianeEssabbane avatar Feb 14 '16 07:02 soufianeEssabbane

Same issue here, any suggestions?

MehulSojitra16 avatar Dec 30 '16 11:12 MehulSojitra16

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.

MehulSojitra16 avatar Dec 30 '16 12:12 MehulSojitra16