I’m building an iPhone app and want to create a 1st time use tutorial for the user. I’ve seen some other apps use popover style baloons to guide the user through the UI and I’d like to do that as well. I have a popover library. What’s the best way to create and track the steps of the tutorial?
Share
I would go with NSUserDefaults. Just trigger some
BOOL-ean values to change as each part finishes. I assume you want to continue the tutorial if the user quits the app, so this would be your best and easiest bet.