From 6d8b8b66affdd9aba8ed4c5008612a01cb93481d Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 29 Sep 2012 13:47:06 -0400 Subject: Initial commit. Created RootViewController class with UIWebView. --- Shared/main.m | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Shared/main.m (limited to 'Shared/main.m') diff --git a/Shared/main.m b/Shared/main.m new file mode 100644 index 0000000..98b9cff --- /dev/null +++ b/Shared/main.m @@ -0,0 +1,17 @@ +// +// main.m +// NearMe +// +// Created by TW on 9/29/12. +// Copyright __MyCompanyName__ 2012. All rights reserved. +// + +#import + +int main(int argc, char *argv[]) { + + NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; + int retVal = UIApplicationMain(argc, argv, nil, nil); + [pool release]; + return retVal; +} -- cgit v1.2.3