iOS Swift:在deleteRowsAtIndexPaths上崩溃

时间:2015-03-01 23:49:21

标签: ios swift uikit icloud cloudkit

当我从tableView中删除一行时,我遇到了崩溃。不知道发生了什么。这是我的代码:

func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
        let items = days[indexPath.row]
        self.removeItems(items, indexPath: indexPath)
    }

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return days.count
}

为removeItems

func removeItems(items: [CKRecord], indexPath: NSIndexPath) {

    for item in items {
        db.deleteRecordWithID(item.recordID) { (record, error) -> Void in
            if error != nil {
                println(error.localizedDescription)
            }

            dispatch_async(dispatch_get_main_queue()) { () -> Void in
                if let index = find(exercises, item) {
                    exercises.removeAtIndex(index)
                }
            }
        }
    }

    days.removeAtIndex(indexPath.row)
    tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .Automatic)
}

1 个答案:

答案 0 :(得分:6)

在删除单元格(或添加单元格)之前,您需要在所涉及的tableView上调用beginUpdates()。然后删除或添加单元格。完成后,请致电endUpdates()。 致电endUpdates()后。请记住,一旦调用endUpdates(),您的tableView模型必须与您删除或添加的部分和行数一致。 开始和结束更新允许ui为所有单元格更改提供连贯的唯一动画。

tableView.beginUpdates()
tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .Automatic)
tableView.endUpdates()