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