YYControl.h 468 B

12345678910111213141516
  1. //
  2. // YYControl.h
  3. // YYKitExample
  4. //
  5. // Created by ibireme on 15/9/14.
  6. // Copyright (c) 2015 ibireme. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YYKit.h"
  10. @interface YYControl : UIView
  11. @property (nonatomic, strong) UIImage *image;
  12. @property (nonatomic, copy) void (^touchBlock)(YYControl *view, YYGestureRecognizerState state, NSSet *touches, UIEvent *event);
  13. @property (nonatomic, copy) void (^longPressBlock)(YYControl *view, CGPoint point);
  14. @end