Casebash
Casebash

Reputation: 118972

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

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

Upvotes: 1

Views: 123

Answers (1)

jer
jer

Reputation: 20236

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

Just remember, if one wasn't available for reuse, you need to create one.

Upvotes: 1

Related Questions