PasteSelectView.h 537 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // PasteSelectView.h
  3. // VclustersGemini
  4. //
  5. // Created by APPLE on 2019/7/5.
  6. // Copyright © 2019 APPLE. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class PasteSelectView;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol PasteSelectViewDelegate <NSObject>
  12. @optional
  13. - (void)pastedBtnBePressed:(NSString *)centontStr pasteSelectView:(PasteSelectView*)pasteSelectView;
  14. @end
  15. @interface PasteSelectView : UIView
  16. @property (nonatomic,weak)id <PasteSelectViewDelegate> delegate;
  17. - (void)haveCentent:(BOOL)have;
  18. @end
  19. NS_ASSUME_NONNULL_END