Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/RolandasRazma/RRTableHeaderView
https://github.com/RolandasRazma/RRTableHeaderView
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/RolandasRazma/RRTableHeaderView
- Owner: RolandasRazma
- License: mit
- Archived: true
- Created: 2012-07-03T22:20:07.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-11-02T20:57:38.000Z (about 11 years ago)
- Last Synced: 2023-03-12T08:41:20.808Z (almost 2 years ago)
- Language: Objective-C
- Size: 98.6 KB
- Stars: 19
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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];