In tableView, a row that is off-screen will get re-rendered when it’s on-screen again.
My question is how to know if a row currently is off-screen or not?
The situation I am facing is that I might need to download an image from the Internet for each item. So when an image comes, the row probably is off-screen or on-screen. If it’s on-screen, the image has to be applied immediately and if it’s off-screen, I don’t need to put that image on the row.
Or maybe there is other way to achieve this?