12345678910111213141516171819202122 |
- //
- // PDFSignatureColorViewController.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 PDFSignatureColorViewController : UIViewController
- @property (nonatomic,copy) void (^callback) (void);
- @property (nonatomic,retain) UIColor *color;
- @property (nonatomic,assign) CGFloat lineWidth;
- - (void)showViewController:(UIViewController *)viewController inBarButtonItem:(UIBarButtonItem *)barButtonItem;
- @end
|