gskbyte / GSKStretchyHeaderView
- воскресенье, 29 мая 2016 г. в 03:12:30
Objective-C
A generic stretchy header for UITableView and UICollectionView
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:
UITableView
and UICollectionView
.xib
filesUICollectionViewLayout
UIScrollView
subclassTo 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:
contentView
. You can layout its subviews manipulating their frames or using Auto Layout (also works with GranadaLayout ).GSKStretchyHeaderView
subclass. Subviews added to the stretchy header will be automatically moved to the content view, keeping their constraints. Remember to set the properties maximumContentHeight
and minimumContentHeight
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, jose.alcala.correa@gmail.com
GSKStretchyHeaderView is available under the MIT license. See the LICENSE file for more info.
UIView+GSKLayoutHelper
to the example project, because its functionality shouldn't belong to the library and the method names may collide with othersUILabel
KVOController
contentInset
recalculation bugfixescontentInset
property