iPhone "slide to unlock" animation - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T15:20:10Z http://stackoverflow.com/feeds/question/438046 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/438046/iphone-slide-to-unlock-animation 5 iPhone "slide to unlock" animation Russ 2009-01-13T05:21:45Z 2009-09-17T22:30:44Z <p>Any ideas as to how Apple implemented the "slide to unlock" (also, "slide to power off" is another identical example) animation?</p> <p>I thought about some sort of animating mask - but masking is not available on the iPhone OS for performance reasons.</p> <p>Is there some private API effect (like SuckEffect) that they might have used? A spotlight type of effect? Some Core Animation thing?</p> <p>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.</p> http://stackoverflow.com/questions/438046/iphone-slide-to-unlock-animation/438051#438051 0 Answer by Noah Witherspoon for iPhone "slide to unlock" animation Noah Witherspoon 2009-01-13T05:26:19Z 2009-01-13T05:26:19Z <p>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.</p> http://stackoverflow.com/questions/438046/iphone-slide-to-unlock-animation/438223#438223 0 Answer by BRH for iPhone "slide to unlock" animation BRH 2009-01-13T07:34:36Z 2009-01-13T08:20:27Z <p>Maybe it's just a rendered-out animation - you know, a series of stills played one after another. Not necessarily a dynamic effect.</p> <p>Update: Never mind, the video DrJokepu posted proved it's dynamically generated.</p> http://stackoverflow.com/questions/438046/iphone-slide-to-unlock-animation/439021#439021 0 Answer by mouviciel for iPhone "slide to unlock" animation mouviciel 2009-01-13T13:55:43Z 2009-01-13T13:55:43Z <p>I guess this is CoreAnimation, which relies on openGL.</p> http://stackoverflow.com/questions/438046/iphone-slide-to-unlock-animation/439193#439193 5 Answer by rpetrich for iPhone "slide to unlock" animation rpetrich 2009-01-13T14:49:06Z 2009-01-13T16:07:45Z <p>You can use the <code>kCGTextClip</code> drawing mode to set the clipping path and then fill with a gradient.</p> <pre><code>// 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 &amp; 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) </code></pre> <p>Setup an NSTimer and vary the values in locations, or use GoreAnimation to do the same.</p> http://stackoverflow.com/questions/438046/iphone-slide-to-unlock-animation/1434334#1434334 2 Answer by MyCatsNameIsBernie for iPhone "slide to unlock" animation MyCatsNameIsBernie 2009-09-16T17:18:57Z 2009-09-17T22:30:44Z <p>Thanks to rpetrich for the clipping gradient recipe. I am a newbie iPhone and Cocoa developer, so I was real happy to find it.</p> <p>I've implemented a decent-looking <em>Slide to Cancel</em> UIViewController using rpetrich's method. You can download the Xcode project of my implementation from <a href="http://altosdesign.com/iphonesdk/SlideToCancel.zip" rel="nofollow">here</a>.</p> <p>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.</p> <p>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.</p> <p>If anyone can figure out how to do a non-timer based implementation using CA or OpenGL, I would love to see it.</p> <p>Thanks for the help!</p>