Skip to content

Latest commit

 

History

History
84 lines (53 loc) · 3.3 KB

README.md

File metadata and controls

84 lines (53 loc) · 3.3 KB

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 😇

My email id, harshalrj25@gmail.com

Harshal Jadhav

License

It's all your's 🎁