AnimatableReload Save

Add animations to tableview and collectionview with just a single line of code

Project README

AnimatableReload

CI Status Version License Platform

Animate tableview and collectionview with few lines of code.

 pod "AnimatableReload"

 import AnimatableReload

 AnimatableReload.reload(tableView: self.demoTableView, animationDirection: "up")
 

Instead of using reload method of tableview and collectionview, just use the above method to reload with animations. you can also specify the directions of animations.

alt text alt text

Usage

For tableview:

   AnimatableReload.reload(tableView: self.demoTableView, animationDirection: "up")

For collectionview:

  AnimatableReload.reload(collectionView: self.demoCollectionView, animationDirection: "up")

You can animate from following directions:

  AnimatableReload.reload(tableView: self.demoTableView, animationDirection: "up")
  AnimatableReload.reload(tableView: self.demoTableView, animationDirection: "down")
  AnimatableReload.reload(tableView: self.demoTableView, animationDirection: "left")
  AnimatableReload.reload(tableView: self.demoTableView, animationDirection: "right")
        
  AnimatableReload.reload(collectionView: self.demoCollectionView, animationDirection: "up")
  AnimatableReload.reload(collectionView: self.demoCollectionView, animationDirection: "down")
  AnimatableReload.reload(collectionView: self.demoCollectionView, animationDirection: "left")
  AnimatableReload.reload(collectionView: self.demoCollectionView, animationDirection: "right")

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

AnimatableReload is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "AnimatableReload"

Author :innocent:

My email id, [email protected]

Harshal Jadhav

License

It's all your's :gift:

Open Source Agenda is not affiliated with "AnimatableReload" Project. README Source: harshalrj25/AnimatableReload

Open Source Agenda Badge

Open Source Agenda Rating