How to determine when a UITableView is loading all rows?

Is there a way to determine when a UITableView is executing, loading all rows?

I'm not sure if this is causing a problem for me, but. I try to automatically select the first row in the table, and it does not do this, and there is at least one row.

+3
source share
1 answer

reloadDatais a synchronous call. Thus, as soon as it reloadDatareturns, all visible cells will be loaded in the table view.

+6
source

Source: https://habr.com/ru/post/1773710/


All Articles