I have uitableview whoes cells are created in interfacebuilder and there is an image in it...now when the images are loaded on the imageview the uitableview scrolling is very choppy... here is some code
if (cell == nil) {
NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
for (id currentObject in topLevelObjects){
if ([currentObject isKindOfClass:[UITableViewCell class]]){
cell = (CustomCell *) currentObject;
break;
}
}
}
so now what can I do to make the scrolling less choppy?
thanks, TC