0
當我調用該方法時,我的UITableViewCell不會刪除。我可以打印出它應該刪除的單元格,但它不會自行刪除,也不會從陣列中刪除它自己。我的UITableViewCell不會刪除
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *thisCell = [tableView cellForRowAtIndexPath:indexPath];
[customData removeObjectIdenticalTo:thisCell.textLabel.text];
NSLog(@"%@", customData);
[thisCell removeFromSuperview];
[tabler reloadData];
}