Quantcast
Channel: Controls – TAGTECINFO
Viewing all articles
Browse latest Browse all 336

[iOS App Dev Libraries, Controls, Tutorials, Examples and Tools]AnimatedCollectionViewLayout – Easy To Use Swift Library For UICollectionView Transition Effects

$
0
0

AnimatedCollectionViewLayout is an open source library providing a set of transition effects that can easily be assigned to a UICollectionView.

With AnimatedCollectionViewLayout you simply need to create an AnimatedCollectionViewLayout object, and pass in one of the animators then assign it as a collection view layout. Like in this example from the readme:

import AnimatedCollectionViewLayout

// …

let layout = AnimatedCollectionViewLayout()
layout.animator = ParallaxAttributesAnimator()
collectionView.collectionViewLayout = layout

Included are numerous examples of different animations, and animators include cube, crossfade, card, page, parallax, turn, and zoom animators.

This animation from the readme shows the cube animation in action:
AnimationCollectionViewLayout

You can find AnimatedCollectionViewLayout on Github here.

A nice library for UICollectionView transition effects.

Original article: AnimatedCollectionViewLayout – Easy To Use Swift Library For UICollectionView Transition Effects

©2017 iOS App Dev Libraries, Controls, Tutorials, Examples and Tools. All Rights Reserved.

Reference source: iOS App Dev Libraries, Controls, Tutorials, Examples and Tools


Viewing all articles
Browse latest Browse all 336

Trending Articles