I believe I have the code for determining if my application has been opened before set in stone:
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
BOOL didFirstLaunch = [defaults boolForKey:@"DidFirstLaunch"];
if (!didFirstLaunch) {
[defaults setBool: YES forKey:@"DidFirstLaunch"];
//Code for assembling overlay view
}
I put this code in the didFinishLaunchingWithOptions method.
I want the transparent overlay view to only cover 3/4 of the iPhone screen and be slightly transparent so you can still see a little of the main page of my application -- it will have a couple pictures and text on it (basically a simple tutorial). How do I go about creating a simple view of this nature?