RACPropertySignalExamples.h 608 B

12345678910111213141516171819
  1. //
  2. // RACPropertySignalExamples.h
  3. // ReactiveCocoa
  4. //
  5. // Created by Josh Abernathy on 9/28/12.
  6. // Copyright (c) 2012 GitHub, Inc. All rights reserved.
  7. //
  8. // The name of the shared examples for a signal-driven property.
  9. extern NSString * const RACPropertySignalExamples;
  10. // The block should have the signature:
  11. //
  12. // void (^)(RACTestObject *testObject, NSString *keyPath, id nilValue, RACSignal *signal)
  13. //
  14. // and should tie the value of the key path on testObject to signal. `nilValue`
  15. // will be used when the signal sends a `nil` value.
  16. extern NSString * const RACPropertySignalExamplesSetupBlock;