FYI, your crash was not because you had no autorelease pool in place. That would just cause some objects to never be reclaimed, which for a debug-only build is not necessarily anything to worry about.
Your crash would have been because you were using [NSString stringWithFormat...] before the Cocoa runtime stuff was all initialized. -- Scott Ribe [email protected] http://www.elevated-dev.com/ (303) 722-0567 voice _______________________________________________ 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]
