Vocabularycocoa.
messagesInputsreceiver | an alien |
args... | method arguments |
signature | signature |
selector | a string |
Outputsreturn... | value returned by method, if any |
Word descriptionSends an Objective C message named by
selector to
receiver. The arguments must be on the stack in left-to-right order.
ErrorsThrows an error if the receiver does not recognize the message, or if the arguments have inappropriate types.
NotesThis word uses a special fast code path if
selector is a literal and the word containing the call to
send is compiled.
See alsosuper-send,
->,
SUPER->Definition