https://github.com/applidium/ADLivelyTableView
ADLivelyTableView - UITableView with style
ADLivelyTableView is a drop-in subclass of UITableView that lets you add custom animations to any UITableView.
It's rather simple to use :
- Add ADLivelyTableView.h and ADLivelyTableView.m to your iOS project
- Link against the QuartzCore framework if you don't already
- Turn any UITableView you want to animate (or subclass thereof) into a subclass of ADLivelyTableView
- Pick whichever animation you like, like this :
livelyTableView.initialCellTransformBlock = ADLivelyTransformFan;
#import <UIKit/UIKit.h>extern NSTimeInterval ADLivelyDefaultDuration;typedef NSTimeInterval (^ADLivelyTransform)(CALayer * layer, float speed);extern ADLivelyTransform ADLivelyTransformCurl;extern ADLivelyTransform ADLivelyTransformFade;extern ADLivelyTransform ADLivelyTransformFan;extern ADLivelyTransform ADLivelyTransformFlip;extern ADLivelyTransform ADLivelyTransformHelix;extern ADLivelyTransform ADLivelyTransformTilt;extern ADLivelyTransform ADLivelyTransformWave;@interface ADLivelyTableView : UITableView <UITableViewDelegate> {id <UITableViewDelegate> _preLivelyDelegate;CGPoint _lastScrollPosition;CGPoint _currentScrollPosition;ADLivelyTransform _transformBlock;}- (CGPoint)scrollSpeed;- (void)setInitialCellTransformBlock:(ADLivelyTransform)block;@end