// create the view that will execute our animation
/*
UIImageView* loadingScreen = [[UIImageView alloc] initWithFrame:self.window.frame];
// load all the frames of our animation
loadingScreen.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"C64-1.png"],
[UIImage imageNamed:@"C64-2.png"],nil];
// all frames will execute in 1.75 seconds
loadingScreen.animationDuration = 1.75;
// repeat the annimation forever
loadingScreen.animationRepeatCount = 3;
// start animating
[loadingScreen startAnimating];
// add the animation view to the main window
[self.window addSubview:loadingScreen];
*/