vote up 5 vote down star
4

Any ideas as to how Apple implemented the "slide to unlock" (also, "slide to power off" is another identical example) animation?

I thought about some sort of animating mask - but masking is not available on the iPhone OS for performance reasons.

Is there some private API effect (like SuckEffect) that they might have used? A spotlight type of effect? Some Core Animation thing?

Edit: It's definitely not a series of stills. I've seen examples of being edit a plist value or something and customize the string on jailbroken iphones.

flag
Do I understand correctly that the iPhone does not support transparency? (I don't own one so I don't know) Anyway, according to this video, the actual text can be changed so it's not some prerendered animation: uk.youtube.com/watch?v=PVhRnL55cJQ – DrJokepu Jan 13 at 5:34
This is a jailbroken phone. I wanted to know how to pull of this animation using the official SDK. That is, without using hidden APIs or accessing things removed from beta versions like CoreFilters and such. – Russ Jan 23 at 8:59

5 Answers

vote up 4 vote down

You can use the kCGTextClip drawing mode to set the clipping path and then fill with a gradient.

// Get Context
CGContextRef context = UIGraphicsGetCurrentContext();
// Set Font
CGContextSelectFont(context, "Helvetica", 24.0, kCGEncodingMacRoman);
// Set Text Matric
CGAffineTransform xform = CGAffineTransformMake(1.0,  0.0,
												0.0, -1.0,
												0.0,  0.0);
CGContextSetTextMatrix(context, xform);
// Set Drawing Mode to set clipping path
CGContextSetTextDrawingMode (context, kCGTextClip);
// Draw Text
CGContextShowTextAtPoint (context, 0, 20, "Gradient", strlen("Gradient")); 
// Calculate Text width
CGPoint textEnd = CGContextGetTextPosition(context);
// Generate Gradient locations & colors
size_t num_locations = 3;
CGFloat locations[3] = { 0.3, 0.5, 0.6 };
CGFloat components[12] = { 
	1.0, 1.0, 1.0, 0.5,
	1.0, 1.0, 1.0, 1.0,
	1.0, 1.0, 1.0, 0.5,
};
// Load Colorspace
CGColorSpaceRef colorspace = CGColorSpaceCreateDeviceRGB();
// Create Gradient
CGGradientRef gradient = CGGradientCreateWithColorComponents (colorspace, components,
															  locations, num_locations);
// Draw Gradient (using clipping path
CGContextDrawLinearGradient (context, gradient, rect.origin, textEnd, 0);
// Cleanup (exercise for reader)

Setup an NSTimer and vary the values in locations, or use GoreAnimation to do the same.

link|flag
vote up 0 vote down

Good question. It might be getting drawn with ordinary Quartz stuff (context clipping or similar), but I can't imagine that that'd have decent performance. Probably a private API.

link|flag
vote up 0 vote down

Maybe it's just a rendered-out animation - you know, a series of stills played one after another. Not necessarily a dynamic effect.

Update: Never mind, the video DrJokepu posted proved it's dynamically generated.

link|flag
vote up 0 vote down

I guess this is CoreAnimation, which relies on openGL.

link|flag
vote up 0 vote down

Thanks to rpetrich for the clipping gradient recipe. I am a newbie iPhone and Cocoa developer, so I was real happy to find it.

I've implemented a decent-looking Slide to Cancel UIViewController using rpetrich's method. You can download the Xcode project of my implementation from here.

My implementation uses a repeating NSTimer. I was unable to figure out how use Core (or Gore) Animation to have the iPhone's graphics engine continuously move the highlighting. I think that could be done on OS X with CALayer mask layers, but mask layers are not supported on iPhone OS.

When I play with Apple's "Slide to Unlock" slider on my iPhone's home screen, I occasionally see the animation freeze. So I think Apple may be using a timer as well.

If anyone can figure out how to do a non-timer based implementation using CA or OpenGL, I would love to see it.

Thanks for the help!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.