iPhone's screen with colors swiping left and right - Snapchat's navigation

Everyone is familiar with Snapchat, and even if you haven't used it yourself, chances are you've heard of it. Personally, I was captivated by the app's navigation system and how intuitive and engaging it felt. While there are already various external libraries available that can replicate this feature, I wanted to provide a comprehensive guide on how to develop Snapchat's navigation from scratch. If you're interested in trying it out for yourself and learning about its inner workings, you've come to the right place.

Horizontal flow 

The whole idea for navigating app views is based on gestures. You can go from the central (camera) view, to every other screen by swiping in any direction. In this part we will focus on the horizontal flow axis as a warm up.

You can try achieve this effect with UIPageViewController, but in my opinion that’s a waste of time; in the end one way or another you will need to adopt a delegate of scrollView. It’s like using a sledgehammer to crack a nut.

I decided to add UIScrollView and set needed constraints programmatically (remember to add top and bottom constraints equal to superView, not the safe area, if you don’t want to see blank spaces on iPhone X family screens).

Next up, we want to add view controllers to our scroll view. To keep codebase clean, we can implement this extension with proper factory methods.

  
  

 

What have we done here? 

  1. This part of code models the behavior of scrollView, which we can set it as fileprivate, as we don’t want to make it accessible by every scrollView in the app
  2. Created internal function for adding view controllers as children
  3. Set the width and height to fill the whole screen
  4. Calculated the position on x axis for enumerated view controllers
  5. Set proper content size and content offset
  6. Added extension for fitting views into containers

Let’s go back to our main view controller, where you can set snapchat navigation with code:

  

Done! Once you have an idea of how it is working, it’s not that hard to implement. You might even be familiar with it thanks to other tutorials, but we need this for the next step, which is a bit more challenging and interesting in my opinion.

N/A
All you need is love, a love for scroll view and its super powers!

Stay tuned for the second part of this tutorial, which will focus on reproducing Snapchat’s vertical navigation. 

Read the other parts of this tutorial