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
Running the sample project I've noticed that the create closure is called twice for each Presentable. It looks like tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) is called twice, which makes me think that something is calling reloadData on the table view as soon as it displays something. This, in turn, runs runConfigure(with: cell) for each Presentable twice, which can lead to all sorts of problems.
The text was updated successfully, but these errors were encountered:
Running the sample project I've noticed that the create closure is called twice for each
Presentable
. It looks liketableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath)
is called twice, which makes me think that something is callingreloadData
on the table view as soon as it displays something. This, in turn, runsrunConfigure(with: cell)
for eachPresentable
twice, which can lead to all sorts of problems.The text was updated successfully, but these errors were encountered: