2017-07-27 19 views
0

ラジオボタンを使用してタスクをチェックするアプリがあるので、アニメーションを終了させる限りすべてが正常に機能しますが、同じボタンを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).'

+0

実行それを... –

+0

私は、シミュレータ上でそれを実行しましたが、どこでログを見つけるのですか? –

+1

例外に関連するメッセージを表示する必要があります。何が問題になったのかを教えてくれますが、 'asyncAfter'はコードの匂いです。時間遅れは必要ありません。 – Paulw11

答えて

0

テーブル行の削除操作でも、テーブルの配列の要素を削除する必要があります。

コードによれば、self.tasksはテーブルリストの配列である可能性があります。

行を削除する同じインデックスから 'self.tasks'の要素を削除します。

ヒント:エラーログを取得するためのシミュレータ上

// Remove array element 
self.tasks.remove(at: <index.row>) 


DispatchQueue.main.asyncAfter(deadline: .now() + .milliseconds(800),execute: { 
       self.tableView.beginUpdates() 
       self.tableView.deleteRows(at: [indexPath], with: .fade) 
       self.tableView.endUpdates() 
      }) 
+1

明示的に 'self.context.delete(task)'とそれ以降に 'self.tasks = try self.context.fetch(TodayTask.fetchRequest())' –

+0

と書かれていますが、self.context.delete(task) at indexPath? –

+0

@SalmanGhumsaniあなたに同意します。コンテキストから配列を再開始します。しかし、確実にする必要があります。配列の要素の正確な削除操作 – Krunal

関連する問題