Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

Animated Logo on App Load iOS

Hey Guys,

You know when you load an app, the logo sometimes has some cool animations? Does anyone know how this file is designed/made?

Thanks,

Joe

1 Answer

Gabe Nadel
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Gabe Nadel
Treehouse Guest Teacher

This tutorial is one example (https://www.youtube.com/watch?v=4y0YHDI4ezU), of how you can insert code into the launch process to play an animation. One note, tho, I'd suggest using the animateWithDuration method for animation, rather than the older "commit animation" style shown here. That said, the placement of the code should get you the effect you want. If you want it to appear like it's a "new" screen, you can always nest the animation inside of a fill screen UIView and have that fade out or disappear when the animation concludes.

If you need a refresher on creating animations, I'd suggest looking at this recent Treehouse Tutorial on iOS animation: http://teamtreehouse.com/library/ios-improving-interaction-with-animation

Thanks very much Gabe!