NSObjectRACPropertySubscribingExamples.h 600 B

1234567891011121314151617
  1. //
  2. // NSObjectRACPropertySubscribingExamples.h
  3. // ReactiveCocoa
  4. //
  5. // Created by Josh Vera on 4/10/13.
  6. // Copyright (c) 2013 GitHub, Inc. All rights reserved.
  7. //
  8. // The name of the shared examples for a signal-driven observation.
  9. extern NSString * const RACPropertySubscribingExamples;
  10. // The block should have the signature:
  11. // RACSignal * (^)(RACTestObject *testObject, NSString *keyPath, id observer)
  12. // and should observe the value of the key path on testObject with observer. The value
  13. // for this key should not be nil.
  14. extern NSString * const RACPropertySubscribingExamplesSetupBlock;