Animating UIImageView with colorWithPatternImage
I have a UIImageView that is animated using the following code: NSMutableArray *imageArray = [[NSMutableArray alloc] init]; for(int i = 1; i < 15; i++) { NSString *str = [NSString stringWithFormat:@"marker_%i.png", i]; UIImage *img = [UIImage imageNamed:str]; if(img != nil) { [imageArray addObject:img]; } } _imageContainer.animationImages = imageArray; _imageContainer.animationDuration = 0.5f; [_imageContainer startAnimating]; What I want now is to repeat the image to get a pattern. There is colorWithPatternImage , but that isn't made for animations. I want the whole background filled with a