Reputation: 2055
I want to create an intro screen for my app. This will be around 5 pages of intro and can have animated images on it. Something very similar to Box app intro screen.
So question is does IOS provides any specific view controller for this kind of intro? If not should I use uiview controller to show on first load and somehow keep a track. What are these actually called in programming term?
TIA
Upvotes: 1
Views: 2062
Reputation: 2189
No.
You can save status by NSUserDefault.
There are some open source that can help you build intro quickly.
https://github.com/ealeksandrov/EAIntroView https://github.com/MatthewYork/MYBlurIntroductionView
Upvotes: 2