For some reason, when I am using the iPhone simulator, all of my text in my tableview cells displays correctly. However, when I publish to the device, the text inside of the cell is shifted up to almost outside of the bounds of the cell.
Any ideas as to why this would be happening on the device and not on the simulator?
This happened to me some time ago while inheriting from UITableViewCell. I don’t know if this is your case or you are just using a standard UITableViewCell. I fixed it by overriding layoutSubviews and using the UITableViewCell’s contentView as reference, here is a sample:
hope it helps!