I have a UITableView with about 400 cells in 200 sections and it\'s a little sluggish in responding to user interaction (scrolling, selecting cells.) I\'ve made sure the met
Are you using a lot of subviews?
If so, a good technique is to, instead of adding a lot of labels and images, draw them using CoreGraphics.
To do this, you'd have to subclass UITableViewCell and implement the -(void)drawRect:(CGRect)rect method.
-(void)drawRect:(CGRect)rect