Home

Awesome

LTransitionImageView

iOS Image View with transition effect between images

Overview

The LTransitionImageView class has only three properties you may want to set:

@property (strong, nonatomic) UIImage *image;
@property (assign, nonatomic) AnimationDirection animationDirection;
@property (assign, nonatomic) CGFloat animationDuration;

The following transition effects are supported (animationDirection property):

Installation

Just import the LTransitionImageView class files into your project.

Sample

_transitionImageView.image = [UIImage imageNamed:@"image0.jpg"];
_transitionImageView.animationDirection = AnimationDirectionTopToBottom;
_transitionImageView.image = [UIImage imageNamed:@"image1.jpg"];

For more information check the LTransitionImageViewSample.