I am using UILongPressGestureRecognizer in my collection view, i want long press gesture recogniser should work only if certain condition is met.
NSString *check;
if([check isEqualToString:@"Enabled"]
{
//long press should be detected. or following method should be called
}
-(void)handleLongPressGesture:(UILongPressGestureRecognizer *)gestureRecognizer
{
}