Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum > iPhone SDK Development Forums > iPhone SDK Development

Reply
 
LinkBack Thread Tools Display Modes
Old 09-14-2008, 12:14 PM   #1 (permalink)
Registered Member
 
Join Date: Aug 2008
Posts: 27
superuser is on a distinguished road
Send a message via AIM to superuser
Default Multiple CGAffineTransforms in Animations

FYI

I've been trying to make a "Ken Burns" effect with image transforms and learned how to make more than two transformations on an image simultaneously.

You can to two transforms with the built in CGAffineTransformConcat function but doing three or more requires that you nest them like so:

Code:
        [UIView beginAnimations:nil context:NULL];
	[UIView setAnimationDuration:30];
	[UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
        CGAffineTransform rotate = CGAffineTransformMakeRotation(0.95);
	CGAffineTransform moveRight = CGAffineTransformMakeTranslation(100, 200);
	CGAffineTransform combo1 = CGAffineTransformConcat(rotate, moveRight);
	CGAffineTransform zoomIn = CGAffineTransformMakeScale(5.8, 5.8);
	CGAffineTransform transform = CGAffineTransformConcat(zoomIn, combo1);
        yourView.transform = transform;
	[UIView commitAnimations];
Be careful what order you put the final transform statement as if you put zoomIn last it won't take effect.

Thanks to everyone here who's been great in helping out us X-Code newcomers.
superuser is offline   Reply With Quote
Old 05-26-2011, 06:37 PM   #2 (permalink)
Registered Member
 
Join Date: Feb 2009
Posts: 218
malaki1974 is on a distinguished road
Default

Outstanding post. Exactly what I needed.
malaki1974 is offline   Reply With Quote
Reply

Bookmarks

Tags
animation, cgaffinetransform, image

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



» Advertisements
» Online Users: 330
9 members and 321 guests
2Apps1Day, akacaj, Domele, michelle, NSString, SLIC, soohyun, Techgirl-52, v1n2e7t
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,650
Threads: 94,114
Posts: 402,886
Top Poster: BrianSlick (7,990)
Welcome to our newest member, soohyun
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 10:01 PM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0