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