简体   繁体   中英

Problems with transitions between views

I try to create simple transitions between views for my app.

-(void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController{
    CATransition *transition;
    transition = [CATransition animation];
    transition.type = kCAGravityLeft;
    transition.duration = 1.25;
    [[[viewController view]layer]addAnimation:transition forKey:nil];
}

I put the quartzcore.framework in my project and i call it.

My problem is that the app is launched but without the transition.

Thanks

Take a look at this topic: iPhone UIView Animation Best Practice

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM