You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i am tried to open in klcpopup when tap the tableviewcell object, its opening well but what happening was its open how many times i click on that object that much times the popup was opened, I am using tap gesture for that to open. Below are my codes,
please help how to stop the popup to open multiple times
HariNarayanan777
changed the title
i am tried to open in klcpopup when tap the tableviewcell
i am tried to open in klcpopup when tap the object in tableviewcell
Jun 21, 2016
i am tried to open in klcpopup when tap the tableviewcell object, its opening well but what happening was its open how many times i click on that object that much times the popup was opened, I am using tap gesture for that to open. Below are my codes,
UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleSingleTap:)]; singleTap.numberOfTapsRequired = 1; [dot setUserInteractionEnabled:YES]; dot.tag=i; [dot addGestureRecognizer:singleTap];
and in selector:
`
- (void)tapDetected:(UITapGestureRecognizer *)recognizer {
}`
here buypopklc was my xib file, hope you will understand please help me to solve this issue.
The text was updated successfully, but these errors were encountered: