Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating a tutorial for my iOS app with page control

I'm trying to create a tutorial for my application with Page Control. I'm not entirely sure how to go about creating this tutorial view, and was hoping somebody could provide some advice or point me to a tutorial. I've been researching for several days now but haven't come across any relevant solutions...

I'm essentially wondering what UI Elements this uses? A page control + UINagivationController or UIViewController?

enter image description here

like image 608
Bob Yousuk Avatar asked Aug 13 '13 17:08

Bob Yousuk


People also ask

What is Page Control iOS?

A page control displays a row of indicator images, each of which represents a page in a flat list. The scrolling row of indicators helps people navigate the list to find the page they want.


1 Answers

Here is a step by step tutorial for what you want to do: http://www.appcoda.com/uipageviewcontroller-tutorial-intro/

The above tutorial shows how to create a UIPageViewController using Interface Builder. The tutorial was rewritten to make it compatible with iOS 7 and Xcode 5 and to use Storyboard. You can find the updated tutorial at this link: http://www.appcoda.com/uipageviewcontroller-storyboard-tutorial/

If you're open to using third party libraries there are several options:

https://github.com/MatthewYork/iPhone-IntroductionTutorial

https://github.com/icepat/ICETutorial

https://github.com/ealeksandrov/EAIntroView

https://github.com/GnosisHub/GHWalkThrough

like image 127
ddevaz Avatar answered Oct 11 '22 09:10

ddevaz