I am creating swift app and I would like to create some tutorial to it(or something that will show how my app works). I have found only this question Creating a tutorial for my iOS app with page control , but it is in objective-c. So my question is: How can I create a tutorial for my ios app , or if you know some page in swift where can I read something about it. Thank you.
Asked
Active
Viewed 1,949 times
1 Answers
3
You can implement this yourself by adding the view(s) and controller(s) as usual and add NSUserDefaults
to check whether the user is starting the app for the first time or not. If not, you can trigger a segue to your normal Home-ViewController.
Alternatively, you can use one something similar to these:

dersvenhesse
- 6,276
- 2
- 32
- 53
-
How can I check that user is new with NSUserDefaults? (I am using mysql/php database). Thank you :) – 0ndre_ Aug 18 '16 at 10:01
-
1Set: `NSUserDefaults.standardUserDefaults().setValue(true, forKey: "ifFirstVisit")`. Get: `NSUserDefaults.standardUserDefaults().boolForKey("ifFirstVisit")`. – dersvenhesse Aug 18 '16 at 10:03