2

我正在使用 UIView transitionFromView 在两个视图之间切换。我目前正在 UIView 子类中执行以下操作:

UIImageView *imgView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"img.png"]];

imgView.frame = CGRectMake(0, 0, 100, 100);

UIView *detailView = [[UIView alloc] initWithFrame:imgView.frame];
detailView.backgroundColor = [UIColor redColor];

detailView.frame = imgView.frame;

[self addSubview:imgView];

[UIView transitionFromView:imgView toView:detailView duration:1.0 
                   options:UIViewAnimationOptionTransitionFlipFromLeft
                completion:^(BOOL finished){

                }
 ]; 

这按预期工作。过渡按其应有的方式执行。问题是我需要在包含先前代码的视图的子视图中进行转换。所以,我把所有东西都放在一个容器中,并尝试对其进行动画处理:

UIImageView *imgView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"img.png"]];

imgView.frame = CGRectMake(0, 0, 100, 100);

UIView *container = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 500, 500)];
UIView *detailView = [[UIView alloc] initWithFrame:imgView.frame];
detailView.backgroundColor = [UIColor redColor];

detailView.frame = imgView.frame;

[container addSubview:imgView];

[self addSubview:container];

[UIView transitionFromView:imgView toView:detailView duration:1.0 
                   options:UIViewAnimationOptionTransitionFlipFromLeft
                completion:^(BOOL finished){

                }
 ]; 

但在这种情况下,动画不会运行。相反,我只看到没有过渡的最终结果。谁能帮我弄清楚这两种情况有何不同?

这里描述了同样的问题,但我认为现有的“解决方案”不足以完全描述这种行为。 使用 transitionFromView 和 transitionWithView 的过渡行为

4

2 回答 2

1

考虑使用 dispatch_after 和 performSelector:withObject:afterDelay 将动画延迟到另一个运行循环:

或在添加子视图后使用 [CATransaction flush]

更多信息请访问http://andrewmarinov.com/working-with-uiviews-transition-animations/

于 2013-12-23T16:57:28.493 回答
0

我不知道为什么第一个有效,但这不是使用此方法的正确方法。被转换离开的视图将从层次结构中移除,并且被转换到的视图将作为动画的一部分添加。所以跳过添加 detailView (或使用UIViewAnimationOptionShowHideTransitionViews选项。

于 2012-05-01T08:15:34.367 回答