164

与其创建两个 ,不如简单地更改一个视图UIImageViews的 似乎是合乎逻辑的。image如果我这样做,是否有两个图像之间的淡入淡出/交叉溶解而不是即时切换?

4

9 回答 9

591

使用新的基于块的方法可以简单得多UIKit animation

假设以下代码在视图控制器中,并且您要交叉溶解的 UIImageView 是 self.view 的子视图,可通过属性寻址self.imageView那么您所需要的就是:

UIImage * toImage = [UIImage imageNamed:@"myname.png"];
[UIView transitionWithView:self.imageView
        duration:5.0f
        options:UIViewAnimationOptionTransitionCrossDissolve
        animations:^{
  self.imageView.image = toImage;
} completion:nil]

完毕。

要在 Swift 中做到这一点,就像这样:

let toImage = UIImage(named:"myname.png")
UIView.transitionWithView(self.imageView,
                          duration:5,
                          options: UIViewAnimationOptions.TransitionCrossDissolve, animations: { self.imageView.image = toImage }, completion: nil)

斯威夫特 3、4 和 5

let toImage = UIImage(named:"myname.png")
UIView.transition(with: self.imageView,
                  duration: 0.3,
                  options: .transitionCrossDissolve,
                  animations: { self.imageView.image = toImage },
                  completion: nil)
于 2012-03-19T16:10:13.320 回答
46

Edit: there is a better solution from @algal below.

Another way to do this is by using predefined CAAnimation transitions:

CATransition *transition = [CATransition animation];
transition.duration = 0.25;
transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
transition.type = kCATransitionFade;
transition.delegate = self;
[self.view.layer addAnimation:transition forKey:nil];
view1.hidden = YES;
view2.hidden = NO;

See the View Transitions example project from Apple: https://developer.apple.com/library/content/samplecode/ViewTransitions/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007411

于 2011-10-03T18:51:32.667 回答
9

对于 Swift 3.0.1 :

UIView.transition(with: self.imageView,
              duration:0.5,
              options: .transitionCrossDissolve,
              animations: { self.imageView.image = newImage },
              completion: nil)

参考:https ://gist.github.com/licvido/bc22343cacfa3a8ccf88

于 2017-03-10T04:03:39.367 回答
6

是的,您所说的绝对正确,这就是这样做的方法。我写了这个方法并总是用它来淡入我的图像。我处理CALayer这个。您需要为此导入核心动画。

+ (void)fadeInLayer:(CALayer *)l
{
    CABasicAnimation *fadeInAnimate   = [CABasicAnimation animationWithKeyPath:@"opacity"];
    fadeInAnimate.duration            = 0.5;
    fadeInAnimate.repeatCount         = 1;
    fadeInAnimate.autoreverses        = NO;
    fadeInAnimate.fromValue           = [NSNumber numberWithFloat:0.0];
    fadeInAnimate.toValue             = [NSNumber numberWithFloat:1.0];
    fadeInAnimate.removedOnCompletion = YES;
    [l addAnimation:fadeInAnimate forKey:@"animateOpacity"];
    return;
}

您可以对淡出图像执行相反的操作。淡出之后。您只需将其从 superview(即UIImageView)中删除。[imageView removeFromSuperview].

于 2011-10-03T18:12:02.220 回答
4

您还可以将淡入功能打包在子类中,以便您可以将其用作通用 UIImageView,如下例所示:

IMMFadeImageView *fiv=[[IMMFadeImageView alloc] initWithFrame:CGRectMake(10, 10, 50, 50)];
[self.view addSubview:fiv];
fiv.image=[UIImage imageNamed:@"initialImage.png"];
fiv.image=[UIImage imageNamed:@"fadeinImage.png"];  // fades in

一个可能的实现如下。

注意:您在setImage:函数中实际实现淡入的方式可能会发生变化,并且可能是该问题的其他答案中描述的其他优秀示例之一——UIImageView像我在这里所做的那样即时创建一个额外的示例在您的特定情况下是不可接受的开销

IMMFadeImageView.h

#import <UIKit/UIKit.h>

@interface IMMFadeImageView : UIImageView
@property (nonatomic,assign) float fadeDuration;
@end

IMMFadeImageView.m

#import "IMMFadeImageView.h"

@implementation IMMFadeImageView
@synthesize fadeDuration;

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        self.fadeDuration=1;
    }
    return self;
}
-(void)setImage:(UIImage *)newImage{

    if(!self.image||self.fadeDuration<=0){
        super.image=newImage;
    } else {
        UIImageView *iv=[[UIImageView alloc] initWithFrame:self.bounds];
        iv.contentMode=self.contentMode;
        iv.image=super.image;
        iv.alpha=1;
        [self addSubview:iv];
        super.image=newImage;
        [UIView animateWithDuration:self.fadeDuration delay:0 options:UIViewAnimationCurveEaseInOut animations:^{
            iv.alpha=0;
        } completion:^(BOOL finished) {
            [iv removeFromSuperview];
        }];
    }
}

上面的代码依赖于一些假设(包括在您的 XCode 项目中启用 ARC),仅用作概念证明,并且为了清晰和集中,它通过省略重要的不相关代码来保持相关性。请不要盲目地复制粘贴。

于 2012-07-14T20:44:35.267 回答
3

我需要无限期地重复这种过渡。这需要大量的试验和错误,但我终于得到了我正在寻找的最终结果。这些是用于将图像动画添加到 UITableViewCell 中的 UIImageView 的代码片段。

以下是相关代码:

@interface SomeViewController ()
@property(nonatomic, strong) NSMutableArray *imagesArray;
@property(nonatomic, assign) NSInteger varietyImageAnimationIndex;
@property(nonatomic, assign) BOOL varietyImagesAnimated;
@end

@implementation SomeViewController
@synthesize imagesArray;
@synthesize varietyImageAnimationIndex;
@synthesize varietyImagesAnimated;
...

// NOTE: Initialize the array of images in perhaps viewDidLoad method.

-(void)animateImages
{
    varietyImageAnimationIndex++;

    [UIView transitionWithView:varietyImageView
                      duration:2.0f
                       options:UIViewAnimationOptionTransitionCrossDissolve
                    animations:^{
                        varietyImageView.image = [imagesArray objectAtIndex:varietyImageAnimationIndex % [imagesArray count]];
                    } completion:^(BOOL finished) {
                        [self animateImages];
                    }];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
   ...
        [cell.imageView setImage:[imagesArray objectAtIndex:0]];


        [self setVarietyImageView:cell.imageView];

        if (! varietyImagesAnimated)
        {
            varietyImagesAnimated = YES;
            [self animateImages];
        }

    ...
    return cell;
}
于 2013-03-10T20:44:46.313 回答
2

在玩弄UIView.transition()了选项并遇到问题之后.transitionCrossDissolve(我试图在一个 UIImageView 内对图像进行动画更改,并且在没有动画的情况下立即发生过渡),我发现您只需要添加一个选项,它可以让您在视图内更改属性的动画(斯威夫特 4.2):

UIView.transition(with: self.imageView,
                   duration: 1,
                   options: [.allowAnimatedContent, .transitionCrossDissolve],
                   animations: { self.imageView.image = newImage },
                   completion: nil)

另外:如果您的 imageView 上有任何子视图,它也会被重绘,并且可能会阻止动画。例如,我的 imageView 上有模糊的子视图,在这种情况下动画不起作用。所以我只是改变了我的视图层次结构并将模糊移动到它自己的视图并将它放在 imageView 上。

于 2019-01-24T22:22:54.673 回答
0

这是我认为最短的方法。创建一个 UIView 动画并将其提交到您的 imageView 上。

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.5];
[myImageView setAlpha:0.0];
[UIView commitAnimations];
于 2014-09-14T20:04:50.280 回答
0

通过使用该highlightedImage属性,这可以变得更简单一些。这是 Swift 3 中的一个示例。首先设置正常和突出显示的图像:

let imageView = UIImageView(image: UIImage(named: "image"), highlightedImage: UIImage(named: "highlightedImage"))

当您想在这些动画之间进行更改时:

UIView.transition(with: imageView, duration: 0.3, options: .transitionCrossDissolve, animations: { self.imageView.isHighlighted = !self.imageView.isHighlighted}, completion: .none)
于 2016-10-28T10:03:16.660 回答