Under ARC, is it still advisable to create an @autoreleasepool for loops?
问题 Let's say that I have a loop that returns a bunch of autoreleased NSData objects... NSData* bigData = ... while(some condition) { NSData* smallData = [bigData subdataWithRange:...]; //process smallData } Under ARC, should I still wrap an @autoreleasepool around the while condition? NSData* bigData = ... @autoreleasepool { while(some condition) { NSData* smallData = [bigData subdataWithRange:...]; //process smallData } } The reason why I'm asking is I see the living allocation count in