How to animate removeFromSuperview

故事扮演 提交于 2019-12-09 05:16:37

问题


I animated the appearance of my subview with:

CATransition *transition = [CATransition animation];
transition.duration = 0.3;
transition.type = kCATransitionReveal;
[webView.layer addAnimation:transition forKey:nil];

[self.view addSubview:webView];

But now I want to remove my subView. How can I add animation to do this? Like other CATransition? When to add this? Before or after addSubview?


回答1:


Well you could do the animation first and on the animationEndListener call removeFromSuperView

[UIView animateWithDuration:0.5
    delay:1.0
    options: UIViewAnimationOptionCurveEaseOut
    animations:^{
        yourView.alpha = 0;
    }completion:^(BOOL finished){
        [yourView removeFromSuperview];
    }];


来源:https://stackoverflow.com/questions/10700933/how-to-animate-removefromsuperview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!