ラジオボタンを使用してタスクをチェックするアプリがあるので、アニメーションを終了させる限りすべてが正常に機能しますが、同じボタンを2回押すと時間私はエラーを取得:終了する前にDispatch.main.asyncAfter()クラッシュアプリを呼び出す
libc++abi.dylib: terminating with uncaught exception of type NSException
コードは、ラジオボタンをタップするたびに実行を
func RadioTapped(_ cell: TableViewCell) {
if let indexPath = tableView.indexPath(for: cell) {
// Removes task from coreData
let task = self.tasks[indexPath.row]
print(tasks.count)
self.context.delete(task)
print(tasks.count)
(UIApplication.shared.delegate as! AppDelegate).saveContext()
do{
self.tasks = try self.context.fetch(TodayTask.fetchRequest())
// Animates the removal of task cell
DispatchQueue.main.asyncAfter(deadline: .now() + .milliseconds(800),execute: {
self.tableView.beginUpdates()
self.tableView.deleteRows(at: [indexPath], with: .fade)
self.tableView.endUpdates()
})
} catch {
print("Fetching Failed")
}
}
}
エラーメッセージ
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid update: invalid number of rows in section 0. The number of rows contained in an existing section after the update (11) must be equal to the number of rows contained in that section before the update (13), plus or minus the number of rows inserted or deleted from that section (0 inserted, 1 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out).'
実行それを... –
私は、シミュレータ上でそれを実行しましたが、どこでログを見つけるのですか? –
例外に関連するメッセージを表示する必要があります。何が問題になったのかを教えてくれますが、 'asyncAfter'はコードの匂いです。時間遅れは必要ありません。 – Paulw11