NSMethodSignature+KiwiAdditions.h 347 B

12345678910111213141516
  1. //
  2. // Licensed under the terms in License.txt
  3. //
  4. // Copyright 2010 Allen Ding. All rights reserved.
  5. //
  6. #import "KiwiConfiguration.h"
  7. @interface NSMethodSignature(KiwiAdditions)
  8. #pragma mark - Getting Information on Message Arguments
  9. - (NSUInteger)numberOfMessageArguments;
  10. - (const char *)messageArgumentTypeAtIndex:(NSUInteger)anIndex;
  11. @end