SkillAgentSearch skills...

LTransitionImageView

iOS Image View with transition between images

Install / Use

/learn @lukagabric/LTransitionImageView
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

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;
  • image – the content image
  • animationDirection – one of the four supported transition animations
  • animationDuration – defaults to 2 seconds if not set

The following transition effects are supported (animationDirection property):

  • AnimationDirectionLeftToRight
  • AnimationDirectionRightToLeft
  • AnimationDirectionTopToBottom
  • AnimationDirectionBottomToTop

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.

View on GitHub
GitHub Stars194
CategoryDevelopment
Updated2mo ago
Forks32

Languages

Objective-C

Security Score

80/100

Audited on Jan 24, 2026

No findings