NSData *imageData = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:[getImage objectAtIndex:indexPath.row]]];
cell.imageView.image = [UIImage imageWithData:imageData];
I am fetching images from a server and displaying them on a UITableView
. I'm finding that the scrolling is very slow. How do I remove this?