Skip to content

Instantly share code, notes, and snippets.

@remirobert
Last active August 29, 2015 14:09
Show Gist options
  • Save remirobert/e37db2f550bd2d32534e to your computer and use it in GitHub Desktop.
Save remirobert/e37db2f550bd2d32534e to your computer and use it in GitHub Desktop.
UIButton event in UIScrollView
//override
- (BOOL)touchesShouldCancelInContentView:(UIView *)view {
return ([view isKindOfClass:[UIButton class]]);
}
//init
self.selectedPhotosView.canCancelContentTouches = YES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment