Just curious does NSAutoreleasePool need to be right at the top of main, or can you declare variables before it?
int main (int argc, const char * argv[]) {
int myNumber;
int myOtherNumber;
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
[pool drain];
return 0;
}
cheers -gary-