In the docs there is an addObject: method of NSAutoreleasePool.
I thought about this:
NSString *myString = [[NSString alloc] initWithCString:"Does this work?"]; [thePool addObject:myString]; [anotherPool addObject:myString];
Is that possible? I always read that I can only add objects to the topmost one on the autorelease pool stack.