UIRefreshControl+RACCommandSupport.h 577 B

1234567891011121314151617181920212223
  1. //
  2. // UIRefreshControl+RACCommandSupport.h
  3. // ReactiveCocoa
  4. //
  5. // Created by Dave Lee on 2013-10-17.
  6. // Copyright (c) 2013 GitHub, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class RACCommand;
  10. @interface UIRefreshControl (RACCommandSupport)
  11. /// Manipulate the RACCommand property associated with this refresh control.
  12. ///
  13. /// When this refresh control is activated by the user, the command will be
  14. /// executed. Upon completion or error of the execution signal, -endRefreshing
  15. /// will be invoked.
  16. @property (nonatomic, strong) RACCommand *rac_command;
  17. @end