1
2
3
4
5
6
7
8
#import <UIKit/UIKit.h>
#import "SampleApp.h"

int main(int argc, char **argv)
{
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
    return UIApplicationMain(argc, argv, [SampleApp class]);
}