In tableView:cellForRowAtIndexPath: I have the following:
tableView:cellForRowAtIndexPath:
cell.textLabel.text = @\"label\"; cell.detailTextLabel.text = @\"detail\";
Your initialization needs to be changed to this:
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
I've emphasized and bolded the part you need to change.