So wie ich es verstehe, wird alles, was mit einer zuweisen , neu , oder kopieren. muss manuell ausgelöst werden. Zum Beispiel:
int main(void) {
NSString *string;
string = [[NSString alloc] init];
/* use the string */
[string release];
}
Meine Frage ist jedoch, ob dies nicht genauso gültig wäre:
int main(void) {
NSAutoreleasePool *pool;
pool = [[NSAutoreleasePool alloc] init];
NSString *string;
string = [[[NSString alloc] init] autorelease];
/* use the string */
[pool drain];
}