| 12345678910111213141516171819202122 |
- //
- // TouchImageView.h
- // iSales-NPD
- //
- // Created by Ray on 2/18/16.
- // Copyright © 2016 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class TouchImageView;
- @protocol TouchImageViewDelegate <NSObject>
- @required
- - (void)TouchImageViewOnTouche:(TouchImageView *)touchImageView;
- @end
- @interface TouchImageView : UIImageView
- {
- @private
- id <TouchImageViewDelegate> __unsafe_unretained delegate;
- }
- @property (unsafe_unretained) id <TouchImageViewDelegate> delegate;
- @end
|