Tagged Questions
2
votes
1answer
781 views
How to detect a swipe-to-delete gesture in a customized UITableviewCell?
I have customized a UITableViewCell and I want to implement "swipe to delete". But I don't want the default delete button. Instead, I want to do something different. What would be the easiest way to ...
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];
}
...