Up
Authors
- Stefan Urbanek (
urbanek@host.sk
)
-
Copyright: (C) 2002 Free Software Foundation
- Declared in:
- StepTalk/NSInvocation+additions.h
Description forthcoming.
Method summary
+ (id) invocationWithTarget: (id)target selector: (SEL)selector;
Description forthcoming.
+ (id) invocationWithTarget: (id)target selectorName: (NSString*)selectorName;
Description forthcoming.
- (id) getArgumentAsObjectAtIndex: (int)anIndex;
Description forthcoming.
- (id) returnValueAsObject;
Description forthcoming.
- (void) setArgumentAsObject: (id)anObject atIndex: (int)anIndex;
Description forthcoming.
void STGetValueOfTypeFromObject(void* value, const char* type, id anObject);
Description forthcoming.
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