Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Tweetbot and Clear show's on the first start of the app a small tutorial screen how the app works. The screen with the small tutorial only pops up on the first start up of the app (1 time)

How and with what can i make a similar thing? Can anyone push me in the right direction?

View i mean:

enter image description here

share|improve this question

3 Answers

up vote 8 down vote accepted

In your viewDidLoad:

 if (![@"1" isEqualToString:[[NSUserDefaults standardUserDefaults]
                                objectForKey:@"Avalue"]]) {
        [[NSUserDefaults standardUserDefaults] setValue:@"1" forKey:@"Avalue"];
        [[NSUserDefaults standardUserDefaults] synchronize];

       //Action here

    }

The '1' stands for how many times you would to see the action. I set it on one for you.

Good luck, Nathan

share|improve this answer
2  
I don't understand what you mean by: The '1' stands for how many times you would to see the action. You're just setting a string, if you change this to any string, including 2, 3 etc it'll still only fire once. – user1423133 Mar 21 at 12:57

I'm assuming by Xcode you actually mean iOS.

What you need to do is use the NSUserDefaults class to store a flag indicating whether the user has seen the tutorial screen before.

When your app first loads (or at the point you want to decide whether or not to show the tutorial screen), do something like this:

if(![[NSUserDefaults standardUserDefaults] boolForKey:@"hasSeenTutorial"])
    [self displayTutorial];

This checks the saved NSUserDefaults for the current user for a value named "hasSeenTutorial", which won't exist yet. Since it doesn't exist, it will call displayTutorial. displayTutorial refers to your method for creating the tutorial view. You can figure out that part.

Then, once the user closes the tutorial screen:

[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"hasSeenTutorial"];

That value will be saved for your user profile, meaning the next time it checks it, it will be true, so displayTutorial won't be called.

share|improve this answer
3  
You forgot too synchronize. – Nathan Sakoetoe Feb 27 '12 at 1:01

Initialise your user defaults with a BOOL, something called instructionsSeen (or whatever you want) and set it to NO in your App delegate's initialize method.. In your app, test this value and if it is NO display your tutorial screen. As part of showing and displaying this screen, set the instructionsSeen to YES and store it in your defaults.

This way the demo screen will only show on first launch, unless the user uninstalls and installs the app again.

You could also show the demo for a small number of launches (say 3). In this case, don't use BOOL use a number and increment it instead.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.