InterviewSolution
Saved Bookmarks
| 1. |
Explain How Messaging Works In Objective-c? |
|
Answer» MESSAGING are not bound to method IMPLEMENTATION until runtime in Objective-C. The compiler transforms a message expression, into a call on a messaging FUNCTION, objc_msgSend(). This function connects the RECEIVER and the name of the method mentioned in the message. Messaging are not bound to method implementation until runtime in Objective-C. The compiler transforms a message expression, into a call on a messaging function, objc_msgSend(). This function connects the receiver and the name of the method mentioned in the message. |
|