I'm using a grouped tableview with some custom cells, and an image as each cell's backgroundColor.
cell.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"custombackground.png"]];
So far, all is good, but my image is significantly taller than the height of a regular cell, and therefore, only the top part of the image is being used as the background, and each cell is identical. Basically, it looks sloppy with each cell repeating the pattern.
Has anyone done this so the second row of the section displays the next part of the image instead of repeating it, so it looks like a single continuous image? (e.g. row 0 uses the first 44 pts of the image, row 1 uses pts 45-88, etc.)
Is it possible, and/or any ideas how to?