Skip to content

AnimatedTableView is the easiest and coolest way to add animations to standard UITableView

License

Notifications You must be signed in to change notification settings

Kedar-27/KSAnimatedTableView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KSAnimatedTableView

AnimatedTableView is the easiest and coolest way to add animations to standard UITableView

Installation

Cocoapods

Feature to be added soon

Manually

Drag and drop contents of Sources folder directly into your project

Usage

// create subclass of tableview as kAnimatedTableView

//set animate property of tableView to true for enabling. Default is false


//For programatic approach set cell animation style of tableview to desired value
 
 self.animatedTableView.selectedCellAnimation = kAnimatedTableView.kAnimatedCellAnimation(rawValue: sender.tag) ?? kAnimatedTableView.kAnimatedCellAnimation.Fade


public enum kAnimatedCellAnimation:Int {
    case Fade = 1
    case MoveUpWithBounce = 2
    case Slide = 3
    case MoveUpWithFade = 4
    case MoveDownWithBounce = 5
    case MoveDownWithFade = 6
}
 // set appropriate int value according to desired style

Author

Kedar Sukerkar

License

MIT

About

AnimatedTableView is the easiest and coolest way to add animations to standard UITableView

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages