I\'m wanting to spoof the feel of the main splash screen fading out whenever applicationDidBecomeActive is called, but it\'s not working. What am I doing wrong?
applicationDidBecomeActive
Try adding it directly to your window instead of the rootViewController.view.
[self.window addSubview:splash];
You may also need to rotate the image using view.transform to align with the startup image.