iOS Equivalent for Android TabLayout

1.6k views Asked by At

I am developing an app which involves paging(Horizontal Scroll). Which i achieved through UIPageViewController.

Whereas i need help and suggestions to achieve the design i have attached below in the image -> The pager in the bottom with the Title, Filled circle and the Line. The pager scrolls along with the page and the respective circle is filled/selected.

In android they use a customised version of TabLayout. I want to figure out the equivalent in iOS

Screen Sample Design

2

There are 2 answers

5
Ahmed Sahib On

You can use UITabBarController

2
Saheb Roy On

You can use UIPageViewController and also UIPageControl, for the circle animation coupled with the changing of the pages or View Controllers.

Here is a tutorial on how to implement it.