Can someone explain to me what init and alloc do in Obj-C. I am reading this obj-c book that gives an example of creating object but it does not really go into details of wh
Alloc will allocate the memory for the object, but Init puts the object into the memory and sets the default values.