Skip to content

Instantly share code, notes, and snippets.

@thedoritos
Created May 3, 2015 14:06
Show Gist options
  • Save thedoritos/27b5659a92cc09549427 to your computer and use it in GitHub Desktop.
Save thedoritos/27b5659a92cc09549427 to your computer and use it in GitHub Desktop.
UITableView with strong scroll
//
// UITableView+StrongScroll.h
//
// Created by thedoritos.
// Prevents the scroll on table view from being stolen
// by UIButtons on UITableViewCells.
//
#import <UIKit/UIKit.h>
@interface UITableView (StrongScroll)
@end
@implementation UITableView (StrongScroll)
- (BOOL)touchesShouldCancelInContentView:(UIView *)view
{
return YES;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment