Skip to content

Instantly share code, notes, and snippets.

View placid7pluto's full-sized avatar
🌴
On vacation

placid7pluto

🌴
On vacation
View GitHub Profile
@placid7pluto
placid7pluto / gist:ab52ca259294b1a605c764532d57ff56
Created October 9, 2016 14:33 — forked from ynechaev/gist:8123997
UITableViewCell popular animation (flipping around Y axis, depending on scroll direction)
@interface YourViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {
UIImageOrientation scrollOrientation;
CGPoint lastPos;
}
- (void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
if (tableView.isDragging) {
UIView *myView = cell.contentView;
CALayer *layer = myView.layer;
CATransform3D rotationAndPerspectiveTransform = CATransform3DIdentity;