Description: Main file of source code for the given example.
#import "AppDelegate.h"
#import "NuSingletonPool.h"
int main(int argc, char * argv[])
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
NuSingletonPool *singletonPool = [NuSingletonPool new];
int retVal = UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
[singletonPool release];
[pool release];
return retVal;
}
See also: