12345678910111213141516171819202122232425262728 |
- //
- // PDFColorPickView.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>
- @class PDFKTColorPickView;
- @protocol PDFKTColorPickDelegate <NSObject>
- @required
- - (void)colorPick:(PDFKTColorPickView *)view updateColor:(UIColor *)color;
- - (void)colorPickDidBegan:(PDFKTColorPickView *)view;
- - (void)colorPickDidEnd:(PDFKTColorPickView *)view;
- @end
- @interface PDFKTColorPickView : UIView
- @property (nonatomic, assign)id<PDFKTColorPickDelegate> colorPickDelegate;
- @end
|