I am just trying to have an action view display the very first time the app is opened, but I am not sure how to build this.
I understand it must be put in
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
I have the action view created, but do not know how to have it display only on the first time, and never again.
Your application if going to have to remember if it's been launched or not before so you can either show the actionview or not. One way you can do this is to save a boolean to file on application exits and read it back at application launch (and if it exists, the apps been launched before). Here is some code that does something like this (put it in your application delegate).
for saving and here is code for loading...
Also note that if your running in the simulator this code will not execute if you quit the simulator, you actually have to press the home button like an iPhone user would.