1 decade ago by paulh
				When building the demo app and running on an iphone 4 (retina) simulator the program crashes?
is this meant to happen?
		is this meant to happen?
#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;
}
			