1234567891011121314151617181920 |
- //
- // PDFPageEditAddViewController.h
- // PDFReader
- //
- // Copyright © 2014-2022 PDF Technologies, Inc. All Rights Reserved.
- //
- // The PDF Reader Sample applications are licensed with a modified BSD license.
- // Please see License for details. This notice may not be removed from this file.
- //
- #import <UIKit/UIKit.h>
- #import "PDFPageEditCell.h"
- @interface PDFPageEditAddViewController : UIViewController
- @property (nonatomic,copy) void (^callback) (PDFEditPage *page);
- - (void)showViewController:(UIViewController *)viewController inBarButtonItem:(UIBarButtonItem *)barButtonItem;
- @end
|