How To Load Images into Custom UITableViewCell?
- by Clifton Burt
This problem is simple, but crucial and urgent. Here's what needs to be done:
load 66px x 66px images into the table cells in the MainViewController table.
each TableCell has a unique image.
But how?
Would we use cell.image?...
cell.image = [UIImage imageNamed:@"image.png"];
If so, where?
Is an if/else statement required?
Help?
Here's…