12345678910111213141516171819202122232425262728293031323334 |
- //
- // ShowImageView.h
- // VclustersGemini
- //
- // Created by APPLE on 2019/10/10.
- // Copyright © 2019 APPLE. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol ShowImageViewDelegate <NSObject>
- @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 <ShowImageViewDelegate> delegate;
- @property (nonatomic,assign)BOOL isLan;
-
- @end
- NS_ASSUME_NONNULL_END
|