| 1234567891011121314151617181920212223242526272829 |
- //
- // PasteSelectView.h
- // VclustersGemini
- //
- // Created by APPLE on 2019/7/5.
- // Copyright © 2019 APPLE. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class PasteSelectView;
- NS_ASSUME_NONNULL_BEGIN
- @protocol PasteSelectViewDelegate <NSObject>
- @optional
- - (void)pastedBtnBePressed:(NSString *)centontStr pasteSelectView:(PasteSelectView*)pasteSelectView;
- @end
- @interface PasteSelectView : UIView
- @property (nonatomic,weak)id <PasteSelectViewDelegate> delegate;
- - (void)haveCentent:(BOOL)have;
- @end
- NS_ASSUME_NONNULL_END
|