InterviewSolution
Saved Bookmarks
| 1. |
What is id? |
|
Answer» It is a pointer to any type, but unlike a void *, it points to an object. For INSTANCE, you ADD anything of type id to an NSARRAY as long as those objects are responding to retain and release it. |
|