NSObject+RACDescription.h 509 B

1234567891011121314151617
  1. //
  2. // NSObject+RACDescription.h
  3. // ReactiveObjC
  4. //
  5. // Created by Justin Spahr-Summers on 2013-05-13.
  6. // Copyright (c) 2013 GitHub, Inc. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. // A simplified description of the object, which does not invoke -description
  10. // (and thus should be much faster in many cases).
  11. //
  12. // This is for debugging purposes only, and will return a constant string
  13. // unless the RAC_DEBUG_SIGNAL_NAMES environment variable is set.
  14. NSString *RACDescription(id object);