0

我编写了一个自定义 UITableViewCell - 图像视图、按钮和三个标签,现在我正在尝试向它添加一些动画。因此,一旦我点击按钮,它就会消失,并且微调器会替换按钮。两秒钟后,单元格被红色覆盖,随着单元格的子视图淡入,然后指示器被移除,红色覆盖层开始淡出。我之前删除的按钮也会淡入。

(我无法用更好的方式表达它:P)

方法是:

-(void)rentButtonPressed:(id)sender
{

    UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite];
    [indicator startAnimating];
    indicator.center = self.rentButton.center;

    [UIView animateWithDuration:0.2
                     animations:^{self.rentButton.alpha = 0.0;}
                     completion:^(BOOL finished){
                         [self.rentButton removeFromSuperview];
                         [self addSubview:indicator];
                     }
     ];

    UIView *overlay = [[UIView alloc] initWithFrame:self.backgroundImage.frame];
    overlay.alpha = 0.0;
    overlay.backgroundColor = [UIColor redColor];
    [self.contentView addSubview:overlay];

    [UIView animateWithDuration:0.4
                          delay:2.0
                        options:UIViewAnimationCurveEaseInOut
                     animations:^{
                             [indicator removeFromSuperview];
                             overlay.alpha = 0.4;
                         }
                    completion:^(BOOL finished){
                        [UIView animateWithDuration:0.4
                                        animations:^{ overlay.alpha = 0.0; }
                                        completion:^(BOOL finished)
                                        {
                                            [overlay removeFromSuperview];
                                        }
                        ];

                        [self.contentView addSubview:self.rentButton];
                        [UIView animateWithDuration:0.4 animations:^{ self.rentButton.alpha = 1.0;}];
                        [self.delegate didTryToRentMovieAtCell:self];
                    }
    ];

}

所以代码确实淡出按钮,用微调器替换它并淡入红色覆盖层。问题是,红色覆盖层并没有消失,而是与按钮一样消失,而不是淡入,它只是出现。

4

1 回答 1

2

在动画期间,您正在通过添加和删除子视图来更改视图层次结构。UIView 类方法 animateWithDuration:animations:completion 仅用于动画视图中的属性更改,而不用于更改视图层次结构。

尝试使用 UIView 类方法 transitionWithView:duration:options:animations:completion: 代替,并将单元格的内容视图用作“容器”。

本文档有助于区分动画视图属性更改和动画视图转换,特别是“更改视图的子视图”部分:http: //developer.apple.com/library/ios/#documentation/windowsviews/conceptual/viewpg_iphoneos /animatingviews/animatingviews.html

于 2012-11-27T21:45:46.503 回答