You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 텍스트필드 편집을 종료하거나 다른 곳 터치 등으로 종료 될 경우 호출됨
privatefunc deleteCellInTodayAgenda(_ cell:AgendaCell){...
// TODO: 스크롤 되어 셀이 안보이면 못찾음
guard let row = todayAgendaTableView.indexPath(for: cell)?.row else{return}
guard let item = snapshot.itemIdentifiers[safe: row]else{return}
snapshot.deleteItems([item])}privatefunc updateCellInTodayAgenda(_ cell:AgendaCell, _ text:String){...
guard let row = todayAgendaTableView.indexPath(for: cell)?.row else{return}
guard let item = snapshot.itemIdentifiers[safe: row]else{return}}
UITableView.indexPath(for:) 는 화면에 보여지고 있는 셀들에 대해서만 찾을 수 있음
The text was updated successfully, but these errors were encountered:
UITableView.indexPath(for:) 는 화면에 보여지고 있는 셀들에 대해서만 찾을 수 있음
The text was updated successfully, but these errors were encountered: