Skip to content

Instantly share code, notes, and snippets.

@NSFish
Last active July 20, 2018 18:46
Show Gist options
  • Save NSFish/3aa5323592b4ddf044910002fbeae41e to your computer and use it in GitHub Desktop.
Save NSFish/3aa5323592b4ddf044910002fbeae41e to your computer and use it in GitHub Desktop.
UIScrollView get along with Swipe Back gesture
@interface ViewController ()
@property (nonatomic, strong) UIScrollView *scrollView;
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Config scrollView and stuff...
// Magic here
[self.scrollView.panGestureRecognizer requireGestureRecognizerToFail:self.navigationController.interactivePopGestureRecognizer];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment