I have a UITableView which is displaying custom UITableViewCells. I need to display textViews, textFields, buttons, etc in the cells depending upon the use case. My problem is that building these cells the first time is slow. For example a cell which contains a UITextView and two UIButtons takes 33ms to build. Some of my cells have up to 10 UI controls in them and take up to 100ms to build. I have tried defining the controls in a nib and loading the nib and I have also tried building the controls programmatically. Both ways take the same amount of time. I am reusing the cells so after the initial load, scrolling isn't too slow. But, the initial load has to build 5-7 cells depending on their height to fill the screen. That can take between 150 and 700ms. Is this normal behavior? I still need to fetch data from the database, process it for display and do various other things before the table can be shown. I would like the table to appear in less than a second from when the user initiates the request.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
cellForRowAtIndexPath:– danielbeard Aug 1 '12 at 1:19