olua.lib.Object└─ olua.lib.Invocation
Instances of me are automatically created and passed into
olua.lib.Object>>forwardInvocation: by the runtime when an unrecognised
selector is encountered. Instances of me can also be created manually and
used to dynamically construct method calls, although it's usually just as
easy to use traditional Lua syntax.
| Method Summary |
|---|
|
| Method Detail |
|---|
argumentsReturns the list of arguments of my method.
invokeCalls my method and returns the result.
invokeWithTarget: targetCalls my method on the specified object.
Note that my current target is ignored in favour of the specified one.
target - the object to call the method onselectorReturns the selector of my method.
setArguments: newargsChanges the list of arguments of my method.
newarguments - the new list of argumentssetSelector: newselectorChanges my selector.
newselector - the new mangled selectorsetTarget: newtargetChanges my target to the specified object.
newtarget - the new targettargetReturns the object I'm currently targeted to.