int main(int argc, char *argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}
will UIApplicationMain() call will return only after completion of our application execution? because i have next line [pool release]
how can i pass the command line argument in main()?
What are the possible int value that UIApplicationMain() will return and their state?