Swift TableView deleteRowsAtIndexPaths NSException

时间:2016-10-02 13:02:36

标签: ios swift xcode uitableview

我有一个动态的TableView,想要删除带动画的行。

我的代码:

struct TableItem {
    let text: String
    let id: String
    let creationDate: String
    let bug: String
    let comments: String
}
var sections = Dictionary<String, Array<TableItem>>()
var sortedSections = [String]()

//Some other Code

override func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {

}

override func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [UITableViewRowAction]? {

     let setChecked = UITableViewRowAction(style: UITableViewRowActionStyle.Default, title: "Erledigt" , handler: { (action:UITableViewRowAction!, indexPath:NSIndexPath!) -> Void in
          var tableSection = self.sections[self.sortedSections[indexPath.section]]
          let tableItem = tableSection![indexPath.row]

          //Not important HTTP POST Code

          if(success == 1)
                {
                    NSLog("SUCCESS");
                    self.tableView.beginUpdates()
                    tableSection?.removeAtIndex(indexPath.row)
                    self.tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .Left)
                    self.tableView.endUpdates()
                    //self.getChecked()

                } 
     }

     return [setChecked]
}

如果我运行此代码,我会收到以下错误消息:

因未捕获的异常'NSInternalInconsistencyException'而终止应用程序,原因:'无效更新:第6节中的行数无效。更新后的现有部分中包含的行数(2)必须等于行数在更新(2)之前包含在该部分中,加上或减去从该部分插入或删除的行数(0插入,1删除)和加或减移入或移出该部分的行数(0移入,0搬出去。'

我不知道我做错了什么。

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

这是值类型陷阱

Swift集合类型是具有值语义的结构,与具有引用语义的类不同。

var tableSection = self.sections[self.sortedSections[indexPath.section]]制作对象的副本,并保持self.sections不变。

从列表中删除项目后,您必须将数组分配回self.sections

tableSection?.removeAtIndex(indexPath.row)
self.sections[self.sortedSections[indexPath.section]] = tableSection