首页 > 移动平台 > 详细

IOS应用启动时渐变等待

时间:2014-09-12 17:12:03      阅读:323      评论:0      收藏:0      [点我收藏+]
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    [UIApplication sharedApplication].statusBarHidden = YES;
    
    
    UIImageView *splashScreen = [[UIImageView alloc] initWithFrame:self.window.bounds];
    splashScreen.image = [UIImage imageNamed:@"程序进入图.png"];
    [self.window addSubview:splashScreen];
    
    [UIView animateWithDuration:5.0 animations:^{
        CATransform3D transform = CATransform3DMakeScale(0.5, 0.5, 1.0);
        splashScreen.layer.transform = transform;
        splashScreen.alpha = 0.8;
        MyLog(@"111");
    } completion:^(BOOL finished) {
        [splashScreen removeFromSuperview];
        MyLog(@"222");
        self.window.rootViewController = [[LoginViewController alloc]init];
        self.window.backgroundColor = [UIColor whiteColor];
           }];
    
    _netRequest = [[NetRequest alloc] init];
    
    [self.window makeKeyAndVisible];
    return YES;
}

IOS应用启动时渐变等待

原文:http://blog.csdn.net/huang2009303513/article/details/39231679

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!