iOS应用启动页的渐变效果

来源:互联网 发布:免费恢复u盘数据软件 编辑:程序博客网 时间:2024/05/17 01:46

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    

   //启动动画

    self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];


    self.window.rootViewController = [[MTTabBarViewController alloc]init];

    [self.window makeKeyAndVisible];

    

    UIImageView *splashScreen = [[UIImageView alloc] initWithFrame:self.window.bounds];

    splashScreen.image = [UIImage imageNamed:@"启动页.jpg"];

    [self.window addSubview:splashScreen];

    

    [UIView animateWithDuration:1.0 animations:^{

        CATransform3D transform = CATransform3DMakeScale(1.2, 1.2, 1.0);

        splashScreen.layer.transform = transform;

        splashScreen.alpha = 0.5;

    } completion:^(BOOL finished) {

        [splashScreen removeFromSuperview];

    }];

    

    return YES;

}
1 0
原创粉丝点击