I have a UITableView
with limited number of rows (let's say 20-30).
Is it possible to disable cell reuse?
Most of solutions propose not to call dequeueReusableCellWithIdentifier
.
But in this case every time UITableViewSource
needs new cell - new instance of that cell is created.
What I want is once I scrolled all the way down and saw all 20-30 cells, on my way back no new cell should be created.
Is it possible?