Right now I can take a screen-shot if you will of a part of my app and save it as an image! My code:
UIGraphicsBeginImageContext(CGSizeMake((hiddenText.contentSize.width + 110), (260)));
[self.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image1 = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
If I do it again later on with a different part of the screen and make an "image2":
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
How can I then string image1 and image2 into an animated gif and copy that animated gif named image3?