Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/RolandasRazma/RRTableHeaderView


https://github.com/RolandasRazma/RRTableHeaderView

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

Ever wondered how Path (in path view) and foursquare (in check in view) did that parallax image effect (when you pulling down table view)?
I was wondering also and it's actually prety easy...

RRTableHeaderView *tableHeaderView = [[RRTableHeaderView alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 80)];
[tableHeaderView setBackgroundImage:[UIImage imageNamed:@"sayounara.jpg"]];
[self.tableView setTableHeaderView:tableHeaderView];
[tableHeaderView release];