KD.
KD.

Reputation: 2055

Create an intro screen for iOS app

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. enter image description here enter image description here

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

Answers (1)

PowHu
PowHu

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

Related Questions