与 TransitionWithView 和 AnimationWithDuration 的区别
Difference with TransisitionWithView and AnimationWithDuration
我几乎可以用 AnimationWithDuration 做 TransistionWithView 能做的一切。我真的不确定什么时候只有一个用例超过另一个用例。
使用 TransitionWithView 而不是 AnimateWithDuration 的用例是什么?
[UIView transitionWithView:]
允许不限于修改动画属性值的动画操作。例如:
[UIView transitionWithView:containerView
duration:0.2
options:UIViewAnimationOptionTransitionFlipFromLeft
animations:^{ [fromView removeFromSuperview]; [containerView addSubview:toView]; }
completion:NULL];
这允许您对子视图的添加、删除、显示或隐藏进行动画处理,其中 [UIView animateWithDuration:animations:]
仅对可动画属性的值更改进行动画处理。
我几乎可以用 AnimationWithDuration 做 TransistionWithView 能做的一切。我真的不确定什么时候只有一个用例超过另一个用例。
使用 TransitionWithView 而不是 AnimateWithDuration 的用例是什么?
[UIView transitionWithView:]
允许不限于修改动画属性值的动画操作。例如:
[UIView transitionWithView:containerView
duration:0.2
options:UIViewAnimationOptionTransitionFlipFromLeft
animations:^{ [fromView removeFromSuperview]; [containerView addSubview:toView]; }
completion:NULL];
这允许您对子视图的添加、删除、显示或隐藏进行动画处理,其中 [UIView animateWithDuration:animations:]
仅对可动画属性的值更改进行动画处理。