Skip to content
This repository has been archived by the owner on Mar 29, 2022. It is now read-only.

Latest commit

 

History

History
24 lines (15 loc) · 747 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 747 Bytes

#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];
}

Preview

Cheers!