Up

NSInvocation class additions

Authors

Stefan Urbanek (urbanek@host.sk)

Date: Generated at 2024-07-10 08:38:24 +0000

Copyright: (C) 2002 Free Software Foundation


Contents -

  1. Software documentation for the NSInvocation(STAdditions) category
  2. NSInvocation+additions functions

Software documentation for the NSInvocation(STAdditions) category

NSInvocation(STAdditions)

Declared in:
StepTalk/NSInvocation+additions.h
Description forthcoming.
Method summary

invocationWithTarget: selector: 

+ (id) invocationWithTarget: (id)target selector: (SEL)selector;
Description forthcoming.

invocationWithTarget: selectorName: 

+ (id) invocationWithTarget: (id)target selectorName: (NSString*)selectorName;
Description forthcoming.

getArgumentAsObjectAtIndex: 

- (id) getArgumentAsObjectAtIndex: (NSInteger)anIndex;
Description forthcoming.

returnValueAsObject 

- (id) returnValueAsObject;
Description forthcoming.

setArgumentAsObject: atIndex: 

- (void) setArgumentAsObject: (id)anObject atIndex: (NSInteger)anIndex;
Description forthcoming.

NSInvocation+additions functions

STGetValueOfTypeFromObject

void STGetValueOfTypeFromObject(void* value, const char* type, id anObject);
Description forthcoming.

STObjectFromValueOfType

id STObjectFromValueOfType(void* value, const char* type);
This method is a factory method, that means that you have to release the object when you no longer need it.


Up