aboutsummaryrefslogtreecommitdiffstats
path: root/Shared/main.m
diff options
context:
space:
mode:
authorTeddy Wing2012-09-29 13:47:06 -0400
committerTeddy Wing2012-09-29 13:47:06 -0400
commit6d8b8b66affdd9aba8ed4c5008612a01cb93481d (patch)
tree274f351ecd1325418f9cb503c6cb7fe0becdc8f6 /Shared/main.m
downloadbabblr-iOS-6d8b8b66affdd9aba8ed4c5008612a01cb93481d.tar.bz2
Initial commit. Created RootViewController class with UIWebView.
Diffstat (limited to 'Shared/main.m')
-rw-r--r--Shared/main.m17
1 files changed, 17 insertions, 0 deletions
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 <UIKit/UIKit.h>
+
+int main(int argc, char *argv[]) {
+
+ NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
+ int retVal = UIApplicationMain(argc, argv, nil, nil);
+ [pool release];
+ return retVal;
+}