ShowImageView.h 699 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // ShowImageView.h
  3. // VclustersGemini
  4. //
  5. // Created by APPLE on 2019/10/10.
  6. // Copyright © 2019 APPLE. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol ShowImageViewDelegate <NSObject>
  11. @optional
  12. - (void)showImageViewtouchesBeganCommondStr:(NSString *)commondStr;
  13. - (void)showImageViewtouchesEndedCommondStr:(NSString *)commondStr;
  14. - (void)showImageViewtouchesMovedCommondStr:(NSString *)commondStr;
  15. - (void)showImageViewtouchesCancelledCommondStr:(NSString *)commondStr;
  16. @end
  17. @interface ShowImageView : UIImageView
  18. @property (nonatomic,weak)id <ShowImageViewDelegate> delegate;
  19. @property (nonatomic,assign)BOOL isLan;
  20. @end
  21. NS_ASSUME_NONNULL_END