So, I got a place in my code where I detach a thread and it runs fine.
Until I run the code on iOS 4.3, then it goes bananas with billions of “Object 0x1045660 of class NSCFString autoreleased with no pool in place – just leaking” errors.
But I cant place an autorelease pool inside the method called by the thread, because NSAutoReleasePool cant be used when ARC is on.
So, what do?
Bracket it in @autoreleasepool { }