I\'m working with ARC and seeing some strange behavior when modifying strings in a loop.
In my situation, I\'m looping using NSXMLParser delegate callbacks, but I see t
You are polluting the autorelease pool with tons and tons of autoreleased objects.
Surround the internal part of the loop with an autorelease pool:
for (...) { @autoreleasepool { ... your test code here .... } }