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
Please edit and add the following line.
UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(dismissMenu)];
// The setCancelsTouchesInView:NO will ensure that all single taps are passed through, for example if a Table view controller is used.
UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(dismissMenu)];
[singleTap setCancelsTouchesInView:NO];
Thanks
Nash
The text was updated successfully, but these errors were encountered:
Please edit and add the following line.
UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(dismissMenu)];
// The setCancelsTouchesInView:NO will ensure that all single taps are passed through, for example if a Table view controller is used.
UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(dismissMenu)];
[singleTap setCancelsTouchesInView:NO];
Thanks
Nash
The text was updated successfully, but these errors were encountered: