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

Joe Li
8,104 PointsAnimated 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
Treehouse Guest TeacherThis 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
Joe Li
8,104 PointsJoe Li
8,104 PointsThanks very much Gabe!