123456789101112131415161718192021222324252627 |
- //
- // PDFMagnifierView.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>
- typedef NS_ENUM(NSInteger, PDFMagnifierViewStyle) {
- PDFMagnifierViewStyleRect = 0,
- PDFMagnifierViewStyleCircle
- };
- @interface PDFMagnifierView : UIView
- @property (nonatomic,assign) CGFloat scale;
- @property (nonatomic,assign) UIView *viewToMagnify;
- @property (nonatomic,assign) CGPoint pointToMagnify;
- @property (nonatomic,assign) PDFMagnifierViewStyle style;
- @end
|