Tagged Questions
3
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];
}
...