PDFStampViewController.h 1.1 KB

1234567891011121314151617181920212223242526272829
  1. //
  2. // PDFStampViewController.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. typedef NSString* const PDFAnnotationStampKey NS_STRING_ENUM;
  12. extern PDFAnnotationStampKey PDFAnnotationStampKeyType; // NSIntger
  13. extern PDFAnnotationStampKey PDFAnnotationStampKeyImagePath; // NSString
  14. extern PDFAnnotationStampKey PDFAnnotationStampKeyText; // NSString
  15. extern PDFAnnotationStampKey PDFAnnotationStampKeyShowDate; // BOOL
  16. extern PDFAnnotationStampKey PDFAnnotationStampKeyShowTime; // BOOL
  17. extern PDFAnnotationStampKey PDFAnnotationStampKeyStyle; // NSIntger
  18. extern PDFAnnotationStampKey PDFAnnotationStampKeyShape; // NSIntger
  19. @interface PDFStampViewController : UIViewController
  20. @property (nonatomic,copy) void (^callback) (NSInteger selectedIndex, NSDictionary *stamp);
  21. - (void)showViewController:(UIViewController *)viewController inRect:(CGRect)rect;
  22. @end