It is necessary to make a table, when scrolling which will be the effect of the "point of view". An example can be found here - http://mdigital.ee/test/floors/ (Move the mouse right-left). 
If the example is a multi-storey building, floor and ceiling. There must be a floor number between (indexPath.row).
I'm not good at animation, and I don’t know how to do it, please tell me!
Here is what I could do:
UIView *myView = cell.demoView; CALayer *layer = myView.layer; CATransform3D rotationAndPerspectiveTransform = layer.transform; rotationAndPerspectiveTransform.m34 = 1.0 / -1000; rotationAndPerspectiveTransform = CATransform3DRotate(rotationAndPerspectiveTransform,45.f * M_PI, 1.0, 0.f, 0.0f); [UIView animateWithDuration:.5 animations:^{ layer.transform = rotationAndPerspectiveTransform; }]; But the lines rotate synchronously. Any idea how to fix this?
Thank!