for(int i = 0; i < 1000000; i++)
{
   NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
   string = [[[NSString alloc] initWithFormat:@"Cig tekstowy %i", i] autorelease];
   // Przetworzenie cigu tekstowego i utworzenie innych automatycznie usuwanych obiektw
   [pool release];
}
