I have a table whose cells contain labels. Whenever I dequeue a reusable cell, the old labels are still lingering on it. I was able to remove them with this:
Subclass UITableViewCell (if you aren't already). Override prepareForReuse and remove the labels there. Might work