PSTGridLayoutItem.h 501 B

12345678910111213141516171819
  1. //
  2. // PSTGridLayoutItem.h
  3. // PSPDFKit
  4. //
  5. // Copyright (c) 2012-2013 Peter Steinberger. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @class PSTGridLayoutSection, PSTGridLayoutRow;
  9. // Represents a single grid item; only created for non-uniform-sized grids.
  10. @interface PSTGridLayoutItem : NSObject
  11. @property (nonatomic, unsafe_unretained) PSTGridLayoutSection *section;
  12. @property (nonatomic, unsafe_unretained) PSTGridLayoutRow *rowObject;
  13. @property (nonatomic, assign) CGRect itemFrame;
  14. @end