PQTableViewCell is based on the logic behind ABTableViewCell.
Subclass PQTableViewCell, and use drawCellView: instead of drawRect: when you want to draw something on the cell.
I recommend to draw strings and images for a faster and smoother scrolling.
PQTableViewCell removes all the original content, so there won't be a selected or highlighted status. You are free to implement the same logic in order to have a selectedView, as enormego's ABTableViewCell does.
Paolo Arduin: [email protected].