UIGestureRecognizer+RACSignalSupport.h 364 B

12345678910111213141516171819
  1. //
  2. // UIGestureRecognizer+RACSignalSupport.h
  3. // ReactiveCocoa
  4. //
  5. // Created by Josh Vera on 5/5/13.
  6. // Copyright (c) 2013 GitHub. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class RACSignal;
  10. @interface UIGestureRecognizer (RACSignalSupport)
  11. /// Returns a signal that sends the receiver when its gesture occurs.
  12. - (RACSignal *)rac_gestureSignal;
  13. @end