iworld
iworld

Reputation: 345

Swiping of Multiple Views in iOS

I have three ViewControllers. I want to swipe the view controllers one by one which is similar to UIPageViewController. I searched for that in so many tutorials I did not find that.

Iam new to Objective-c.

Upvotes: 0

Views: 973

Answers (1)

Vig
Vig

Reputation: 1522

This tutorial will help you get started, it has multiple views and a persistent view as well. It also has the source code, so you can dive into the code if you don't want to read the tutorial.

If you don't want to use UIPageViewController take the UICollectionView approach to simplify things.

Take a look at this question for an example.

Upvotes: 1

Related Questions