After tableView scrolled data puts in cells in wrong order – Ios swift
in my View: func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: "TransactionTableCell", for: indexPath) as! TransactionTableCell let newItem = getTransactionsInSection(section: sectionHeader[indexPath.section])[indexPath.row] cell.configure(item: newItem) } in my TransactionTableCell func configure(item: TransactionModel) { guard let withdrawalBonuses…