7

我有问题transitionWithViewanimateWithDuration。我的一个animateWithDuration块没有转换,这是一个突然的变化,并且transitionWithView不会暂时禁用用户交互。我检查了文档并相信我做的一切都是正确的,但显然有问题。下面是两个代码块:

这是在我的主视图控制器ViewController中,它具有三个容器视图/子视图控制器。此块移动容器视图之一,但不会ViewController在转换发生时阻止用户进行其他交互。

[UIView transitionWithView:self.view duration:0.5 options:UIViewAnimationOptionCurveEaseOut animations:^ {
        CGRect frame = _containerView.frame;
        frame.origin.y = self.view.frame.size.height - _containerView.frame.size.height;
        _containerView.frame = frame;
}completion:^(BOOL finished) {
     // do something   
}];

这是在我的一个容器视图控制器中。动画似乎没有效果,因为 的文本productTitleLabel突然productDescriptionTextView变化,好像动画块不存在一样。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{    
    [self.viewController toggleFlavoredOliveOilsTableView];

    if (indexPath.row > 0) {
        NSDictionary *selectedCellDict = [[_flavoredOliveOilsDict objectForKey:@"Unflavored Olive Oils"] objectAtIndex:indexPath.row - 1];

        [UIView animateWithDuration:0.5 delay:0 options:UIViewAnimationOptionTransitionCrossDissolve animations:^ {
            self.viewController.productTitleLabel.text = [_flavoredOliveOilsTableView cellForRowAtIndexPath:indexPath].textLabel.text;
            self.viewController.productDescriptionTextView.text = [selectedCellDict objectForKey:@"Description"];
        }completion:nil];

        if (indexPath.row == 1) {
            [self.viewController setProductDescriptionTextViewFrameForInformationTab];
        }
        else {
            [self.viewController setProductDescriptionTextViewFrameForNonInformationTab];

            //self.viewController.productImageView.image = [UIImage imageNamed:[selectedCellDict objectForKey:@"Image"]];
        }
    }
}

我认为这些问题有些相关,因为我的大多数动画和过渡块都不能完全按预期工作。谢谢你的帮助。

编辑

我想要完成的是移动容器视图ViewController并设置标签、文本视图和图像视图的文本和图像属性;所有这些都在主视图中。这些属性的详细信息通过子视图控制器发送。transitionWithView是在一个被调用的方法toggleFlavoredOiveOilsTableViewdidSelectRowAtIndexPath。我认为问题在于我试图同时调用两个不同的动画/过渡块。

4

1 回答 1

13

如果一个动画是在另一个正在进行动画的视图的子视图上完成的,则您可以体验到两个动画相互干扰的这种行为。因此,如果您按照transitionWithView:self.view代码片段建议的方式执行(即在主视图上),您可能会遇到问题。如果您在不同的子视图上执行这两个动画,问题可能会消失。在下面的原始答案中,我:

  • transitionWithView在具有两个UILabel控件的子视图上执行;

  • 将我的视图控制器包含子视图放在主视图的子视图中,然后将transitionFromViewController其约束到该子视图。

当我将两个动画部分放在不同的子视图上时,动画可以同时发生而不会发生意外。


如果要对两个文本标签内容的变化进行动画处理,可以:

[UIView transitionWithView:self.viewController.textLabelsContainerView
                  duration:0.5
                   options:UIViewAnimationOptionTransitionCrossDissolve
                animations:^{
                    self.viewController.productTitleLabel.text = [_flavoredOliveOilsTableView cellForRowAtIndexPath:indexPath].textLabel.text;
                    self.viewController.productDescriptionTextView.text = [selectedCellDict objectForKey:@"Description"];
                }
                completion:nil];

通常我会使用animateWithDuration,但 text 属性不是动画属性,所以这就是我使用 的原因transitionWithView,确保我有一个用于这些文本字段的容器。但是我尝试使用 为其他控件设置动画animateWithDuration,同时为子控制器的变化设置动画,并且效果很好。

为了转换子视图控制器,我使用transitionFromViewController动画容器子控制器视图的交换(它是自定义容器系列方法中管理子视图控制器的一部分)。为了促进该过程,我在主视图控制器的视图上放置了一个容器视图,并将子控制器的视图添加为该容器的子视图。这样,当我为孩子的过渡设置动画时,动画很好地限制在该容器视图中。

因此,这里是一些示例代码,用于将视图控制器添加到我的容器视图中,然后是我使用分段按钮在两个子视图控制器之间转换的代码:

- (void)addFirstChild
{
    UIViewController *child = [self.storyboard instantiateViewControllerWithIdentifier:@"Stooge"];
    [self addChildViewController:child];

    child.view.frame = self.bottomContainerView.bounds;
    [self.bottomContainerView addSubview:child.view];

    [child didMoveToParentViewController:self];
}

- (void)changedChild
{
    UIViewController *oldController = [self.childViewControllers lastObject];
    UIViewController *newController;

    if (self.segmentedControl.selectedSegmentIndex == 0)
        newController = [self.storyboard instantiateViewControllerWithIdentifier:@"Stooge"];
    else
        newController = [self.storyboard instantiateViewControllerWithIdentifier:@"Marx"];

    [oldController willMoveToParentViewController:nil];
    [self addChildViewController:newController];

    // start off screen below

    CGRect startFrame = self.bottomContainerView.bounds;
    startFrame.origin.y += startFrame.size.height;

    // end up where it's supposed to be, right in the container

    newController.view.frame = startFrame;

    [self transitionFromViewController:oldController
                      toViewController:newController
                              duration:0.5
                               options:0
                            animations:^{
                                newController.view.frame = self.bottomContainerView.bounds;
                            }
                            completion:^(BOOL finished) {
                                [oldController removeFromParentViewController];
                                [newController didMoveToParentViewController:self];
                            }];

}

最重要的是,我对容器子控制器和父控制器中的字段进行动画处理都没有问题。也许我不理解你描述的问题。或者,我们制作动画的方式可能存在一些微妙的差异。如果你想看的话,我已经把上面的代码放在了 github 上。

于 2012-12-14T21:57:59.163 回答