I have a really strange issue where my UITableView content has started to misbehave greatly.
- There are no lines in between cells regardless what I set the line Separator property to.
- The disclosure caret doesn’t show, even though it shows in the Storyboard editor.
- Setting the table view in edit mode doesn’t show any edit widgets. The cell content is actually totally un-effected (it should animate to make room for the delete icon, right?).
- But when going from edit mode to “normal” mode suddenly the cell is shifted to the right (without animations). It’s the cell, not the contents, that is shifted to the right. I know because I’ve tried it with grouped style.
Anyone seen this? Anyone have a hint to throw me? This stupid thing is in the way for my apps progress!
Please let me know if I can add any information to make my question clearer.
Found it. I had forgot to call
[super layoutSubViews]in my custom cell class. Gah!