When I add images to a UITableView, im noticing that the first time they're added to the cell I get a jerky scroll.
I'm not loading them in remotely, instead my code looks like this:
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
MyObject *object = [self.myObjects objectAtIndex:indexPath.row];
cell.imageView.image = [UIImage imageNamed:object.imageName];
return cell;
(there is no if (cell == nil) line as im registering the cell class in the view did load)
Is this a bad way of doing it? and if so, how should I add images from the main bundle to my cell's imageView?