Here is a better implemetation.
- It helps you create a tableview(scrollview) with parallax effect, much like the top view of Path's timeline, by a easier way.
- It's just a instance method of UIScrollView's category, so we can add the parallax effect naturally.
//we get a tableView here, of course, any kind of UIScrollView class's object is fine.
UITableView* tableView = [self createTableView];
//get a parallax background view.
UIView * parallaxView = [self getParallaxView];
//that's all.
[tableView addForegroundView:[self getParallaxView]
withWindowHeight:100
dragDistanceLimit:0
parallaxFactor:0.25];
NTParallaxView is available under the MIT license. See the LICENSE file for more info.