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