tags:

views:

112

answers:

2

For code:

int main(int argc, char *argv[]) {

NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;

}

Apple's doc clearly specifies:

Return Value: Even though an integer return type is specified, this function never returns. When users terminate an iPhone application by pressing the Home button, the application immediately exits by calling the exit system function with an argument of zero.

Secondly, in int UIApplicationMain ( int argc, char *argv[], NSString *principalClassName, NSString *delegateClassName ); how can we access the argv from our UIApplication subclass?

+3  A: 

The autorelease pool doesn't get released. Instead, the OS simply removes your application from memory.

Dietrich Epp
Also, note that NSAutoreleasePools may be nested. Such nested pools are created during each event handler. Memory autoreleased in application code is mostly likely caught by one of these nested pools which are drained during the app's normal behavior.
Barry Wark
A: 

As for the values of arc and argv Apple documentation states the following :

NSApplicationMain itself ignores the argc and argv arguments. Instead, Cocoa gets its arguments indirectly via _NSGetArgv, _NSGetArgc, and _NSGetEnviron (see [crt_externs.h]).

Navi Sidhu