UIControl+RACSignalSupport.h 454 B

12345678910111213141516171819
  1. //
  2. // UIControl+RACSignalSupport.h
  3. // ReactiveCocoa
  4. //
  5. // Created by Josh Abernathy on 4/17/12.
  6. // Copyright (c) 2012 GitHub, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class RACSignal;
  10. @interface UIControl (RACSignalSupport)
  11. /// Creates and returns a signal that sends the sender of the control event
  12. /// whenever one of the control events is triggered.
  13. - (RACSignal *)rac_signalForControlEvents:(UIControlEvents)controlEvents;
  14. @end