InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of reuseIdentifier? What is the benefit of setting it to a non-nil value? |
|
Answer» It groups together similar rows that differ in content, but have similar layouts in a UITableView. A UITableView ALLOCATES SUFFICIENT UITableViewCell objects to just DISPLAY the content that is visible in the table. |
|