I have a UITableView which is using custom UITableViewCells to display some information. I'd like to add a UITableViewCellAccessoryDisclosureIndicator to the cells. Every method that I try successfully adds the chevron, but once the table view scrolls down, they disappear. I'm doing the standard dequeueReusableCellWithIdentifier method, and when I dump out the references to the cells, it's re-using them properly. All of the other data displays fine, it's only the chevrons that disappear.
Things I've tried:
- cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator];
- [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator];
- accessoryTypeForRowWithIndexPath:
Anyone ever have this happen?