I tried to fill a UIView with tiled background images.
The size of the UIView is 1136 * 640, and the size of the background image I use is 64 * 64.
The code I write is:
self.view.backgroundColor = [UIColor colorWithPatternImage:
[UIImage imageNamed:@"paper_texture.png"]];
But after I set the background image for this view, there are lines that separate each tiled background image.
I tested this using css repeating background image in html, and there are no such lines.