Re: Trouble with UIImage Touch tutorial
I got it to work in Beta5 by deleting MainWindow in Info.plist from the last line.
Also change your main.m main() to look something like this - replace the last 'nil' with the name of your app delegate.
int retVal = UIApplicationMain(argc, argv, nil, @"TouchesImageAppDelegate");
|