Skip to content

Instantly share code, notes, and snippets.

View carlossless's full-sized avatar
⚙️

Karolis Stasaitis carlossless

⚙️
View GitHub Profile
@carlossless
carlossless / rotating-image-frames-from-imageview.m
Last active August 29, 2015 13:57
Create PNG Animation Frame Images by Animating an UIImageView
- (void)makeRotatedImagesWithImageView:(UIImageView *)imageView
{
for (int i = 0; i < 30; i++) {
CGFloat angle = M_PI / 15 * i;
CGSize boundingSize = imageView.image.size;
boundingSize.width *= 2;
boundingSize.height *= 2;