This question already has an answer here:
One book for about iPhone programming instantiates classes like this:
[[Class alloc] init]
Another book about Objective-C does it like this:
[Class new]
What's the difference?
|
This question already has an answer here: One book for about iPhone programming instantiates classes like this:
Another book about Objective-C does it like this:
What's the difference? |
|||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Originally in Objective-C, objects were created with new. As the OpenStep/Cocoa framework evolved, the designers developed the opinion that allocating the memory for an object and initializing its attributes were separate concerns and thus should be separate methods (for example, an object might be allocated in a specific memory zone). So the alloc-init style of object creation came into favor. Basically, new is old and almost-but-not-quite deprecated — thus you'll see that Cocoa classes have a lot of init methods but almost never any custom new methods. |
|||||
|
|
Nothing more, nothing less. Classes might override it, but that is highly atypical in favor of doing something like |
|||
|
|
|
As already mentioned, by defaut there is no difference. But you can overwrite the
|
|||
|
It depends on the Class, but |
|||