Learn how to build an Uber Splash Screen that uses animations to go beyond the typical static launch screen and keeps users interested while the app loads.
Nice tutorial, thanks! At the end of the Splash Screen Views and Layers Composition section, you provided a GIF that shows the 3D view of the view hierarchy, with animations running. I wonder how did you achieve this, did you use any kind of tool?
Hey @axl411, that gif that you were talking about was actually quite involved. Compiled the app several times to show the different layers while taking a screen recording via QuickTime. That was handed off to a friend who knows After Effects well and could make a 3D video composition. After that was turning it into a gif w/ a program whose name I forget off the top of my head. But yeah, I wish a program would do that for me :]
One issue I’m seeing when I add the last step for zooming in…
It’s got frame around the edge that doesn’t have the same fade as the stuff in the centre. Any idea where I would have goofed up? Everything up to this point looked exactly like the gifs.
Tricky to diagnose w/o me seeing the animation or code. Potential culprits I can give you are to make sure the if shouldEnableRipple { conditional in the Animating the TileView section matches. Another area to look at is to make sure you are adding the animation to the correct area. i.e. not self.layer.addAnimation, but containerView.layer.addAnimation.
If you still are having trouble, I would do a diff of TileView.swift, & TileGridView.swift on your project and the final project found in the Where to Go From Here section. When you figure it out, I would be intrigued to hear the culprit. Good luck
I spent over half an hour trying to compare using diff tools and finally…i didn’t notice this curly brace. i had everything in that shouldEnableRipple block instead of just transform.scale and position.
Back to doing the iOS Animations by Tutorial book!
Thanks for the tutorial, and plan to go through it more closely soon, but I just have a quick question while Im here -
Is it possible to use an image as the background, than use tiled set of views?
Can the same ‘ripple’ effect be applied to one large imageView?
It seems not to like the ‘/’ operator with NSNumber.
Here is the error: ~/Fuber final/SplashScreenUI/AnimatedULogoView.swift:220:83: No '/' candidates produce the expected contextual result type 'NSNumber'
I am trying to convert this to swift 3 and bombing so hard. I am sure I’m not the only one. Could you throw us a bone and help convert the tut over to swift 3? I cant wait to contribute if you do decide to put this up on GitHub.
Thanks for the great Tutorial. I’m trying to implement a similar Splashscreen for my App.
I copied the SplashscreenUI framework to my project and I can run it on the simulator. But when I want to archive my Project I get the following error:
ld: bitcode bundle could not be generated because ‘/Users/mikekoene/Documents/Work/Henrys app/HenrysApp/SplashScreenUI.framework/SplashScreenUI’ was built without full bitcode. All frameworks and dylibs for bitcode must be generated from Xcode Archive or Install build for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
This tutorial is more than six months old so questions are no longer supported at the moment for it. We will update it as soon as possible. Thank you! :]