you cannot help but use some of the tricks that he will achieve
Open the AppDelegate.m application and add the following code to your application. FIFF file or didFinishLaunchingWithOptions application:
UIImageView *splashImage = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
[splashImage setImage: [UIImage imageNamed:@"Default"]];
[self.window addSubview:splashImage];
[self.window bringSubviewToFront:splashImage];
splashImage.layer.anchorPoint = CGPointMake(0, 0.5);
splashImage.frame = CGRectMake(0, 0, 320, 480);
[UIView animateWithDuration:1.0
delay:0.6
options:(UIViewAnimationCurveEaseOut)
animations:^{
splashImage.layer.transform = CATransform3DRotate(CATransform3DIdentity, -M_PI_2, 0, 1, 0);
} completion:^(BOOL finished){
[splashImage removeFromSuperview];
}];
download sample application
animated-splash-screen-default-png
source
share