AAPLCustomPresentationController.h 927 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // CPDFBOTAViewController.h
  3. // ComPDFKit_Tools
  4. //
  5. // Copyright © 2014-2024 PDF Technologies, Inc. All Rights Reserved.
  6. //
  7. // THIS SOURCE CODE AND ANY ACCOMPANYING DOCUMENTATION ARE PROTECTED BY INTERNATIONAL COPYRIGHT LAW
  8. // AND MAY NOT BE RESOLD OR REDISTRIBUTED. USAGE IS BOUND TO THE ComPDFKit LICENSE AGREEMENT.
  9. // UNAUTHORIZED REPRODUCTION OR DISTRIBUTION IS SUBJECT TO CIVIL AND CRIMINAL PENALTIES.
  10. // This notice may not be removed from this file.
  11. //
  12. @import UIKit;
  13. @class AAPLCustomPresentationController;
  14. @protocol AAPLCustomPresentationControllerDelegate <NSObject>
  15. @optional
  16. - (void)AAPLCustomPresentationControllerTap:(AAPLCustomPresentationController *)AAPLCustomPresentationController;
  17. @end
  18. @interface AAPLCustomPresentationController : UIPresentationController <UIViewControllerTransitioningDelegate>
  19. @property (nonatomic, weak) id<AAPLCustomPresentationControllerDelegate> tapDelegate;
  20. @end