Sometime it happens when you are using custom UITableViewCell with labels, images etc but also somewhere you are setting default UILabel of cell. for example
customCell.textLabel.text = @"some text"
To solve this problem, avoid using default label, instead add your own UILabel in your custom cell.