How to achieve scrolling animation in UITableViewCell?

1.4k Views Asked by At

I have a necessity in my app which requires the following animation in uitable cell. The animaton can be easily seen in the following link. UITableCell animation sample

How to achieve this animation?

2

There are 2 best solutions below

0
On BEST ANSWER

Check out this source code, It is something that you are looking for,

https://github.com/mrugrajsinh/AnimatedTableViewCellDemo

Demo

0
On

You can use tableView:WillDisplayCell:ForRowAtIndexPath: delegate of UITableView to write your own custom animation. This link might help.