Product walkthrough animation for iOS apps

Sanchit Goel
1 min readSep 24, 2020

--

Most mobile apps implement a product walkthrough for onboarding the user before login. This article shows how you can quickly implement this cool animated walkthrough in your app.

Let’s start by importing the pod. Simply add the following line to your Podfile

pod 'WalkthroughScroller'

In the view controller where you want to present the walkthrough add the following code snippet.

Add the following code with images and text wherever you would like to display the walkthrough.

Implement the following delegate method in order to handle the callback of CTA button.

You can check all the available customization options in the README.

--

--