I have a grouped UITableView with some large images. However, scrolling performance is quite poor (note: it was excellent before the iOS 4 upgrade, now it's very jittery). I've read that using drawRect instead of adding subviews to the cell could improve performance.
First question: Is that true?
Second question: If it will increase performance, how can I implement it? I've been looking at the UITableViewSuite sample code example #5 which does this, but I'm having a lot of trouble adapting their code to work with my project. Are there some other good examples of how to do this?
Thanks for the help!