-
Notifications
You must be signed in to change notification settings - Fork 610
/
Copy pathCSStickyHeaderFlowLayout.h
32 lines (23 loc) · 1.01 KB
/
CSStickyHeaderFlowLayout.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
* This file is part of the CSStickyHeaderFlowLayout package.
* (c) James Tang <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#import <UIKit/UIKit.h>
//! Project version number for CSStickyHeaderFlowLayout.
FOUNDATION_EXPORT double CSStickyHeaderFlowLayoutVersionNumber;
//! Project version string for CSStickyHeaderFlowLayout.
FOUNDATION_EXPORT const unsigned char CSStickyHeaderFlowLayoutVersionString[];
// Import All public headers
#import <CSStickyHeaderFlowLayout/CSStickyHeaderFlowLayoutAttributes.h>
#pragma mark -
extern NSString *const CSStickyHeaderParallaxHeader;
@interface CSStickyHeaderFlowLayout : UICollectionViewFlowLayout
@property (nonatomic) CGSize parallaxHeaderReferenceSize;
@property (nonatomic) CGSize parallaxHeaderMinimumReferenceSize;
@property (nonatomic) BOOL parallaxHeaderAlwaysOnTop;
@property (nonatomic) BOOL disableStickyHeaders;
@property (nonatomic) BOOL disableStretching;
@end