1234567891011121314151617181920212223242526 |
- //
- // PDFViewerModeViewController.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>
- @interface PDFViewerModeViewController : UIViewController
- @property (nonatomic,assign) NSInteger themesType;
- @property (nonatomic,retain) UIColor *color;
- @property (nonatomic,assign) CGFloat brightness;
- @property (nonatomic,assign) NSInteger scrollType;
- @property (nonatomic,assign) BOOL isCropMode;
- @property (nonatomic,copy) void (^callback) (NSInteger index);
- - (void)showViewController:(UIViewController *)viewController inBarButtonItem:(UIBarButtonItem *)barButtonItem;
- - (void)showViewController:(UIViewController *)viewController inRect:(CGRect)rect;
- @end
|