That's strange, since apple says that there is somewhere an main function. But I really can't find any.
It should look somehow like this:
#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;
}
What file is that where I can see it? Is it hidden?