12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #import <UIKit/UIKit.h>
- @class PSTGridLayoutSection;
- @interface PSTGridLayoutInfo : NSObject
- @property (nonatomic, strong, readonly) NSArray *sections;
- @property (nonatomic, strong) NSDictionary *rowAlignmentOptions;
- @property (nonatomic, assign) BOOL usesFloatingHeaderFooter;
- @property (nonatomic, assign) CGFloat dimension;
- @property (nonatomic, assign) BOOL horizontal;
- @property (nonatomic, assign) BOOL leftToRight;
- @property (nonatomic, assign) CGSize contentSize;
- - (CGRect)frameForItemAtIndexPath:(NSIndexPath *)indexPath;
- - (PSTGridLayoutSection *)addSection;
- - (void)invalidate:(BOOL)arg;
- - (PSTGridLayoutInfo *)snapshot;
- @end
|