// // ShowImageView.h // VclustersGemini // // Created by APPLE on 2019/10/10. // Copyright © 2019 APPLE. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @protocol ShowImageViewDelegate @optional - (void)showImageViewtouchesBeganCommondStr:(NSString *)commondStr; - (void)showImageViewtouchesEndedCommondStr:(NSString *)commondStr; - (void)showImageViewtouchesMovedCommondStr:(NSString *)commondStr; - (void)showImageViewtouchesCancelledCommondStr:(NSString *)commondStr; @end @interface ShowImageView : UIImageView @property (nonatomic,weak)id delegate; @property (nonatomic,assign)BOOL isLan; @end NS_ASSUME_NONNULL_END