IOS应用启动时渐变等待

  1. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions  
  2. {  
  3.     self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];  
  4.     [UIApplication sharedApplication].statusBarHidden = YES;  
  5.       
  6.       
  7.     UIImageView *splashScreen = [[UIImageView alloc] initWithFrame:self.window.bounds];  
  8.     splashScreen.image = [UIImage imageNamed:@"程序进入图.png"];  
  9.     [self.window addSubview:splashScreen];  
  10.       
  11.     [UIView animateWithDuration:5.0 animations:^{  
  12.         CATransform3D transform = CATransform3DMakeScale(0.50.51.0);  
  13.         splashScreen.layer.transform = transform;  
  14.         splashScreen.alpha = 0.8;  
  15.         MyLog(@"111");  
  16.     } completion:^(BOOL finished) {  
  17.         [splashScreen removeFromSuperview];  
  18.         MyLog(@"222");  
  19.         self.window.rootViewController = [[LoginViewController alloc]init];  
  20.         self.window.backgroundColor = [UIColor whiteColor];  
  21.            }];  
  22.       
  23.     _netRequest = [[NetRequest alloc] init];  
  24.       
  25.     [self.window makeKeyAndVisible];  
  26.     return YES;  
  27. }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值