Tagged Questions

4
votes
4answers
302 views

iOS: Cancel UIScrollView touches when using 2 fingers

I have written a UIScrollView subclass that I am using to scroll a series of UITableViews. See the following diagram: As you can see I have several vertically scrolling UITableViews, that are being ...
2
votes
1answer
3k views

Enabling Swipe-to-delete while showing reorder controls on UITableView

I am looking to allow reordering of UITableViewCells and deleting via swipe to delete, but not via the red delete circle. - (void)loadView { [super loadView]; [table setEditing:YES animated:NO]; } ...