On Apr 17, 2010, at 12:18 PM, Alexander Bokovikov wrote: > *** _NSAutoreleaseNoPool(): Object 0x209fa0 of class NSCFString autoreleased > with no pool in place - just leaking
Set a breakpoint at _NSAutoreleaseNoPool and start the app. That should show you where it’s happening. Most likely you started an NSThread without putting an autorelease pool in the thread’s main function, or you got a callback on some thread and are making Cocoa calls on it without wrapping your callback in an autorelease pool. —Jens_______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
