near the top of pg 69. After:
Code:
filePath = [[NSBundle mainBundle] pathForResource:theProduct.countryOfOrigin
ofType:@"png"];
image = [UIImage imageWithContentsOfFile:filePath];
This code as is, will not draw the flag image to the cell because it is missing this line of code:
Code:
[image drawInRect:CGRectMake(260.0, 10.0, 20.0, 20.0)];