I have thousand of small images. I need to combine them into a big image one by one dozens at the same time and live on the screen. The user should be capable watch the small image shown one by one quickly and smoothly, no matter how we load/combine the small images.
Which means:
BigImage += SmallImage1;
BigImage += SmallImage2;
BigImage += SmallImage3;
...
BigImage += SmallImage1000+;
At the first time, I simply added the small image to the big one with addSubviews/addSublayers. As you can imagine, that caused a huge lag, because there are too many views to render which is expensive.
So I tried to use only one imageView(the big image), combine the small images to the big one every time. So I wrote some code like:
UIGraphicsBeginImageContextWithOptions(self.frame.size, NO, 0.0f);
CGContextRef ctx = UIGraphicsGetCurrentContext();
[bgImageView.layer renderInContext:ctx];
//[bgImageView.image drawInRect:self.frame]; // This line or the line above, same result
[smallImg drawInRect:rectToWindow];
bgImageView.image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
But there is still the huge lag problem(but in the way different), I guess because it render the big image every time which cost expensive.
So the question is:
Is there any possible I can keep the big image rendered in context, and do not render it every time?
Or may be you have the better idea can do what I need. Just talk to me, any idea will be helpful.
Thank you guys.