RACSubclassObject.h 746 B

123456789101112131415161718192021222324252627
  1. //
  2. // RACSubclassObject.h
  3. // ReactiveCocoa
  4. //
  5. // Created by Josh Abernathy on 3/18/13.
  6. // Copyright (c) 2013 GitHub, Inc. All rights reserved.
  7. //
  8. #import <Quick/Quick.h>
  9. #import <Nimble/Nimble.h>
  10. #import "RACTestObject.h"
  11. @interface RACSubclassObject : RACTestObject
  12. // Set whenever -forwardInvocation: is invoked on the receiver.
  13. @property (nonatomic, assign) SEL forwardedSelector;
  14. // Invokes the superclass implementation with `objectValue` concatenated to
  15. // "SUBCLASS".
  16. - (NSString *)combineObjectValue:(id)objectValue andIntegerValue:(NSInteger)integerValue;
  17. // Asynchronously invokes the superclass implementation on the current scheduler.
  18. - (void)setObjectValue:(id)objectValue andSecondObjectValue:(id)secondObjectValue;
  19. @end