Possible Duplicate:
Difference between [NSMutableArray array] vs [[NSMutableArray alloc] init]
NSMutableArray* test = [NSMutableArray array];
NSMutableArray* test1 =[[NSMutableArray alloc]init];
What is the difference?
What is 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.
|
You don't need to release The method |
|||
|
|
|
|
|||
|
|
|
The first one is a static method of |
|||
|
|
|
The Relation Between the two statements :
|
|||
|
|