#CellFold
CellFold, UITableView+HCFoldTableView, is a category for UITableView which gives your UITableView some 3D feeling and perspective.
This project is totally inspired by soulwire's JavaScript project FoldScroll.
##Usage
First, import QuartzCore in Build Phases
Second, import UITableView+HCFoldTableView.h in the controller where you're using a UITableView
Third, you need to implement UIScrollViewDelegate -(void)scrollViewDidScroll:
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
// Makes it work
[self.tableView scrollViewDidScroll:scrollView];
}
Cheers!