-(UITableViewCellEditingStyle)tableView:(UITableView*)tableView editingStyleForRowAtIndexPath:(NSIndexPath*)indexPath {
// For edit mode
return 3;
}
現在只要一行也就做到了
self.tableView.allowsMultipleSelectionDuringEditing = YES;
-(UITableViewCellEditingStyle)tableView:(UITableView*)tableView editingStyleForRowAtIndexPath:(NSIndexPath*)indexPath {
// For edit mode
return 3;
}
現在只要一行也就做到了
self.tableView.allowsMultipleSelectionDuringEditing = YES;
转载于:https://www.cnblogs.com/Liddle/archive/2011/10/24/2222317.html