Main File of Source Code

Description: Main file of source code for the given example.

The main.m File

#import "AppDelegate.h"
int main(int argc, char *argv[])
{
    @autoreleasepool {
        NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
        int retVal = UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
        [pool release];
        return retVal;
    }
}

See also:

Chart Events