I have a subclass of UITableViewCell that I create for a UITableView. Let's say I have 26 cells (letters of the alphabet). In SDK 2.1 I load the first six cells, A->F, then scroll down and it loads the next six cells (G->L).
In SDK 3.0 I load the first six cells, A->F, then scroll, it reloads the first six cells again (A->F), instead of cells (G->L) even though the data model has changed.
Does anyone know what changes in SDK 3.0 affected the layout of UITableViewCell in this way?