if (editingStyle == UITableViewCellEditingStyleDelete){
NSFileManager *fileManager = [[NSFileManager alloc]init];
NSString *filePath = [documentsDirectory
stringByAppendingPathComponent:[NSString stringWithFormat:@"%@ ",[self->localSongs objectAtIndex:indexPath.row]]];
[fileManager removeItemAtPath:filePath error:nil];
[self->localSongs removeObjectAtIndex:indexPath.row];
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
[self.tableView reloadData];
}
有什么建议吗?