Search code examples
iosuitableviewrecycle

Manually recycle UITableViewCell


Is there an opposite method to dequeueReusableCell? I am dequeuing cells for cell height computation and after it computes its height I want to recycle that cell so it can be reused for display.

Or should I just instantiate an object per cell type, store it in a property, and the use those instead?


Solution

  • This is still not possible in iOS 10. I will update the answer if this is available in the future.