3

我正在 viewDidLoad 或 viewDidAppear 方法中尝试一个简单的 UIView 动画,但它没有动画。

UIImage *bluredScreenshot = [self.parentViewControllerScreenshot applyBlur];

    [UIView transitionWithView:self.screenshotView duration:3.0f options:UIViewAnimationOptionTransitionCrossDissolve animations:^{
        self.screenshotView.image = bluredScreenshot;
    } completion:nil];

简单的交叉溶解两个图像。当从 viewDidLoad 或 viewDidAppear 运行时,图像会发生变化但没有动画。

但是假设我在按下按钮后从一个方法运行动画,它会动画。为什么?看起来很奇怪。

是否可以通过 viewDidLoad 方法实现?你会如何解决这个问题?

谢谢。

4

3 回答 3

3

当视图正在加载时,您无法制作动画,因为没有任何动画。在 viewdidapear 中尝试:并且不要使用过渡

[UIView animateWithDuration:3.
                      delay:0
                    options:UIViewAnimationOptionTransitionCrossDissolve
                 animations:^{
                             self.screenshotView.image = bluredScreenshot;
                 }
                 completion:nil];
于 2013-10-25T23:36:47.177 回答
3

您需要淡入屏幕截图。如果您使用两个图像,则需要将一个图像视图放在另一个之上。pop this inside viewDidAppear: after call [super viewDidAppear:animated];

UIImageView *imageView = [[UIImageView alloc] initWithFrame:self.screenshotView.frame];
[self.view addSubview:imageView];
    [imageView setAlpha:0.0f];
    imageView = blurredScreenshot;
    [UIView animateWithDuration:0.3f animations:^{
                [imageView setAlpha:1.0f];
            } completion:^(BOOL finished){
                self.imageView.image = blurredScreenshot;
                [imageView removeFromSuperview];
}];
于 2013-10-26T00:08:29.237 回答
0

提醒一下,有时您的问题可能是由于未致电引起的:

self.layoutIfNeeded()
于 2016-12-08T04:43:24.323 回答