PDFPageEditCell.h 785 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // PDFPageEditCell.h
  3. // PDFReader
  4. //
  5. // Copyright © 2014-2022 PDF Technologies, Inc. All Rights Reserved.
  6. //
  7. // The PDF Reader Sample applications are licensed with a modified BSD license.
  8. // Please see License for details. This notice may not be removed from this file.
  9. //
  10. #import <UIKit/UIKit.h>
  11. @interface PDFEditPage : NSObject
  12. @property (nonatomic,assign) CGPDFPageRef pageRef;
  13. @property (nonatomic,assign) NSInteger rotation;
  14. @property (nonatomic,copy) NSString *imagePath;
  15. @property (nonatomic,assign) CGSize size;
  16. - (id)initWithPageRef:(CGPDFPageRef)pageRef;
  17. - (CGSize)sizeThatFits:(CGSize)size;
  18. @end
  19. @interface PDFPageEditCell : UICollectionViewCell
  20. @property (nonatomic,retain) PDFEditPage *page;
  21. @property (nonatomic,retain) UILabel *textLabel;
  22. @end