Files
phonegap-plugins/iPhone/LocalNotification/example/main.m
2011-06-21 18:43:12 -07:00

18 lines
363 B
Objective-C

//
// main.m
// example
//
// Created by Gregamel on 4/3/11.
// Copyright Boeing 2011. All rights reserved.
//
#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, @"exampleAppDelegate");
[pool release];
return retVal;
}