财神随手记账

MWTapDetectingView.h 585B

123456789101112131415161718192021222324252627
  1. //
  2. // UIViewTap.h
  3. // Momento
  4. //
  5. // Created by Michael Waterfall on 04/11/2009.
  6. // Copyright 2009 d3i. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @protocol MWTapDetectingViewDelegate;
  10. @interface MWTapDetectingView : UIView {}
  11. @property (nonatomic, weak) id <MWTapDetectingViewDelegate> tapDelegate;
  12. @end
  13. @protocol MWTapDetectingViewDelegate <NSObject>
  14. @optional
  15. - (void)view:(UIView *)view singleTapDetected:(UITouch *)touch;
  16. - (void)view:(UIView *)view doubleTapDetected:(UITouch *)touch;
  17. - (void)view:(UIView *)view tripleTapDetected:(UITouch *)touch;
  18. @end