12345678910111213141516171819 |
- #import <UIKit/UIKit.h>
- @class PSTGridLayoutSection, PSTGridLayoutRow;
- @interface PSTGridLayoutItem : NSObject
- @property (nonatomic, unsafe_unretained) PSTGridLayoutSection *section;
- @property (nonatomic, unsafe_unretained) PSTGridLayoutRow *rowObject;
- @property (nonatomic, assign) CGRect itemFrame;
- @end
|