I am trying to allow the "Swipe to go back" feature found in iOS 7+, but it isn't working in my app. I have added
nc.interactivePopGestureRecognizer.delegate = (id<UIGestureRecognizerDelegate>)self;
[nc.interactivePopGestureRecognizer setEnabled:YES];
but it simply refuses to work. I have a navigation controller at startup and then I have the "present as popover" segment from view to view. Is there any way I can get an error message or an NSLog to detect why it isn't working?