I like the effect used in many iPhone apps where a semi-transparent help screen slides from the top (or bottom) on top of the current view to show hints or tips. This screen often has a close button as well as “don’t show this again” button.
What’s the best approach to slide a view on top of the current view for such an effect? Any code example someone can point me towards?
Thanks
You will want to do something like this from the main view controller..
and the done button would either call back to the main controller or dismiss itself using
Here is the documentation on the UIViewController class. The methods you require can be found there.
The don’t show again feature means you will have to save their selection to NSUserDefaults or somewhere else(sqllite,file system). Then you can read that back when your app launches to determine if you should call showHelp.