Ricardo Quesada de3de39f57 Sample works with the new v3.2 API
Updates API in samples

Adds iOS and Mac projects. Convient Xcode project to test
the sample really easy.
2014-07-31 12:53:37 -07:00

10 lines
242 B
Objective-C

#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, @"AppController");
[pool release];
return retVal;
}