GSKStretchyHeaderView is an implementation of the stretchy header paradigm as seen on many apps, like Twitter, Spotify or airbnb. It's designed in order to accomplish the following requirements:
- Compatibility with
UITableView
andUICollectionView
- Data source and delegate independency: can be added to an existing view controller withouth interfering with your existing
delegate
ordataSource
- Provide support for frame layout, auto layout and Interface Builder
.xib
files - No need to subclass a custom view controller or to use a custom
UICollectionViewLayout
- Simple usage: just implement your own subclass and add it to your
UIScrollView
subclass
To add a stretchy header to your table or collection view, you just have to do this:
- (void)viewDidLoad {
[super viewDidLoad];
CGSize headerSize = CGSizeMake(self.tableView.frame.size.width, 200); // 200 will be the default height
self.stretchyHeader = [[GSKStretchyHeaderViewSubclass alloc] initWithFrame:CGRectMake(0, 0, headerSize.width, headerSize.height)];
self.stretchyHeader.delegate = self; // this is completely optional
[self.tableView addSubview:self.stretchyHeader];
}
or
- (void)viewDidLoad {
[super viewDidLoad];
NSArray<UIView *> *nibViews = [[NSBundle mainBundle] loadNibNamed:@"GSKTabsStretchyHeaderView"
owner:self
options:nil];
self.stretchyHeaderView = nibViews.firstObject;
[self.tableView addSubview:self.stretchyHeaderView];
}
There are two ways to create your own stretchy header:
- Create a stretchy header subclass and add subviews to its
contentView
. You can layout its subviews manipulating their frames or using Auto Layout (also works with GranadaLayout ). - Create an Interface Builder file and map it to your
GSKStretchyHeaderView
subclass. Subviews added to the stretchy header will be automatically moved to the content view, keeping their constraints. Remember to set the propertiesmaximumContentHeight
andminimumContentHeight
in the attributes inspector (fourth tab on the right panel in Interface Builder).
To modify the behaviour and layout of your stretchy header, just override the method -didChangeStretchFactor:
in your subclass, where you can adjust it by using the stretchFactor
. To get a more detailed description of the properties, please have a look at the source code. There are also a few usage examples in the example project. You can also take them as a reference for your own stretchy headers.
To run the example project, clone the repo and open the workspace file GSKStretchyHeaderView.xcworkspace
.
You can also use pod try GSKStretchyHeaderView
.
GSKStretchyHeaderView is available through CocoaPods. To install it, simply add the following line to your Podfile, you can check the Example Podfile to see how it looks like:
pod "GSKStretchyHeaderView"
Jose Alcalá Correa, [email protected]
GSKStretchyHeaderView is available under the MIT license. See the LICENSE file for more info.
- Move
UIView+GSKLayoutHelper
to the example project, because its functionality shouldn't belong to the library and the method names may collide with others - Add a new example resizing a
UILabel
- Simplify internal code thanks to
KVOController
- Add lots of tests (coverage above 94%)
- Add Twitter example
- Fix a couple of smaller issues
- Make stretchy header view stay always on top, so that section headers and footers do not overlap it.
contentInset
recalculation bugfixes- Add airbnb-like example
- Add new anchorMode
- Add
contentInset
property - Add code documentation
- Unify stretchFactor properties
- Initial working version