I have this really weird bug. When I scroll down my table view, down to a section I called “description”, the cells in this section won’t be displayed. Instead, the title of the section is repeated again and again. It sounds like whoever is in charge of the screen display in the iPhone does not find anything to display and let what was on the screen before (and it is the title of the section because I scrolled down).
If I take a screenshot, there just is a black background instead of the cell.
This bug does not happened in the simulator, but only in a real device.
Did anyone ever meet this kind of thing ? Could you guess where the problem is ?
I have found the solution… It was obvious but still…
My UILabel has a size greater than 2048 px. We are not allowed to use size larger than that, that’s the reason the rendering is so weird.
This thread stackoverflow.com/questions/773386/inserting-various-views-into-uiscrollview has already dealt with that issue.