PDFKTColorPickView.h 702 B

12345678910111213141516171819202122232425262728
  1. //
  2. // PDFColorPickView.h
  3. // PDFReader
  4. //
  5. // Copyright © 2014-2022 PDF Technologies, Inc. All Rights Reserved.
  6. //
  7. // The PDF Reader Sample applications are licensed with a modified BSD license.
  8. // Please see License for details. This notice may not be removed from this file.
  9. //
  10. #import <UIKit/UIKit.h>
  11. @class PDFKTColorPickView;
  12. @protocol PDFKTColorPickDelegate <NSObject>
  13. @required
  14. - (void)colorPick:(PDFKTColorPickView *)view updateColor:(UIColor *)color;
  15. - (void)colorPickDidBegan:(PDFKTColorPickView *)view;
  16. - (void)colorPickDidEnd:(PDFKTColorPickView *)view;
  17. @end
  18. @interface PDFKTColorPickView : UIView
  19. @property (nonatomic, assign)id<PDFKTColorPickDelegate> colorPickDelegate;
  20. @end