gpt4 book ai didi

iphone - transitionFromView 动画开始回调 :toView:duration

转载 作者:行者123 更新时间:2023-11-29 03:34:58 27 4
gpt4 key购买 nike

我使用transitionFromView:toView:duration 在一个 View 和另一个 View 之间翻转。

我的源 View 位于其父 View 的中心。我还想将目标 View 居中(如下面的完成 block 中所做的那样)。

    [UIView transitionFromView:sourceView toView:destView duration:.3 options:UIViewAnimationOptionTransitionFlipFromLeft completion:^(BOOL finished) {
destView.center = destView.superview.center;
}];

由于transitionFromView:toView:duration从其 super View 中删除sourceView并将其替换为destView,因此您不能简单地在调用之前运行destView.center = destView.superview.center。

有没有办法在动画开始之前运行居中代码?

最佳答案

尝试使用transitionWithView:duration:options:animations: 以获得相同的效果:

self.destView.hidden = YES;
[self addSubview:self.destView];
destView.center = destView.superview.center;
// [self setNeedsLayout]; // I can't remember if this is necessary???

[UIView transitionWithView:self duration:0.3 options: UIViewAnimationOptionTransitionFlipFromLeft animations:^{

self.destView.hidden = NO;
self.sourceView.hidden = YES;

} completion:^(BOOL finished) {

[self.sourceView removeFromSuperview];
self.sourceView.hidden = NO;
}];

关于iphone - transitionFromView 动画开始回调 :toView:duration,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19305407/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com