cocoa touch - What are the exact circumstances in which I can reuse a UITableViewCell? -


What are the precise circumstances in which I can reuse a cell (using dequeueReusableCellWithIdentifier In the class)?

This is a cell available for reuse with your identifier. Your only requirement is to use the same identifier for the same type of cell you want.

Just remember, if someone was not available for reuse, then you need to make one.


Comments