Configurable animated onboarding screen written programmatically in Swift for UIKit – inspired by the Apple Stocks app – with Insignia as an example.
Developed and designed by Lukman Aščić.
UIOnboarding supports iPhone, iPad and iPod touch running iOS and iPadOS 13 or higher, including core accessibility features such as Dynamic Type, VoiceOver, Reduce Motion for all devices and Split View and Slide Over for iPad.
Default 6.5" | Default 4" |
---|---|
![]() |
![]() |
12.9" Portrait | 12.9" Landscape |
---|---|
![]() |
![]() |
Dynamic Type | VoiceOver | Reduce Motion |
---|---|---|
![]() |
![]() |
![]() |
1/3 iPad Landscape | 1/2 iPad Landscape | 2/3 iPad Landscape |
---|---|---|
![]() |
![]() |
![]() |
1/3 iPad Portrait | 2/3 iPad Portrait |
---|---|
![]() |
![]() |
iPad Portrait | iPad Landscape |
---|---|
![]() |
![]() |
To install UIOnboarding
as a package, add https://github.com/lascic/UIOnboarding.git
in the package manager in Xcode (under File/Add Packages...). Select the version from 1.1.3
or the main
branch.
.package(url: "https://github.com/lascic/UIOnboarding.git", from: "1.1.3")
// or
.package(url: "https://github.com/lascic/UIOnboarding.git", branch: "main")
There is a demo project with and without SPM in the Demo
directory: Demo/UIOnboarding Demo
and Demo/UIOnboarding Demo SPM
. This folder also provides an example for using it in a SwiftUI app: Demo/UIOnboarding SwiftUI
.
You can download them as a .zip file to run it on a physical device or simulator in Xcode.
Before building and running the project, make sure to set it up with your own provisioning profile.
UIOnboardingViewController
takes a UIOnboardingViewConfiguration
parameter for setup.
Make sure the view controller you're presenting from is embedded in a UINavigationController
. OnboardingViewController
has been set up to be presented as a full screen view.
// In the view controller you're presenting
import UIKit
import UIOnboarding
let onboardingController: UIOnboardingViewController = .init(withConfiguration: .setUp())
onboardingController.delegate = self
navigationController?.present(onboardingController, animated: false)
Dismiss the onboarding view with the provided delegate method.
extension ViewController: UIOnboardingViewControllerDelegate {
func didFinishOnboarding(onboardingViewController: UIOnboardingViewController) {
onboardingViewController.modalTransitionStyle = .crossDissolve
onboardingViewController.dismiss(animated: true, completion: nil)
}
}
We rely on SwiftUI's UIViewControllerRepresentable
protocol to make the UIKit UIOnboardingViewController
behave as a SwfitUI View
.
Create an OnboardingView
struct which implements the protocol and use the .fullScreenCover()
modifier introduced in iOS and iPadOS 14 to show it in your SwiftUI view you're presenting from.
.fullScreenCover(isPresented: $showingOnboarding, content: {
OnboardingView.init()
.edgesIgnoringSafeArea(.all)
}
Note that we assign SwiftUI's coordinator as the delegate object for our onboarding view controller.
onboardingController.delegate = context.coordinator
// In OnboardingView.swift
import SwiftUI
import UIOnboarding
struct OnboardingView: UIViewControllerRepresentable {
typealias UIViewControllerType = UIOnboardingViewController
func makeUIViewController(context: Context) -> UIOnboardingViewController {
let onboardingController: UIOnboardingViewController = .init(withConfiguration: .setUp())
onboardingController.delegate = context.coordinator
return onboardingController
}
func updateUIViewController(_ uiViewController: UIOnboardingViewController, context: Context) {}
class Coordinator: NSObject, UIOnboardingViewControllerDelegate {
func didFinishOnboarding(onboardingViewController: UIOnboardingViewController) {
onboardingViewController.dismiss(animated: true, completion: nil)
}
}
func makeCoordinator() -> Coordinator {
return .init()
}
}
// In ContentView.swift
import SwiftUI
struct ContentView: View {
@State private var showingOnboarding = true
var body: some View {
NavigationView {
Text("Hello, UIOnboarding!")
.toolbar {
Button {
showingOnboarding = true
} label: {
Image(systemName: "repeat")
}
}
.fullScreenCover(isPresented: $showingOnboarding, content: {
OnboardingView.init()
.edgesIgnoringSafeArea(.all)
})
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView.init()
}
}
UIOnboardingViewConfiguration
consists of five components.
UIImage
NSMutableAttributedString
Array<UIOnboardingFeature>
UIOnboardingTextViewConfiguration
(e.g. Privacy Policy, Terms of Service, Portfolio Website)UIOnboardingButtonConfiguration
In a helper struct UIOnboardingHelper
we define these components and combine them in an extension of UIOnboardingViewConfiguration
.
import UIKit
import UIOnboarding
struct UIOnboardingHelper {
// App Icon
static func setUpIcon() -> UIImage {
return Bundle.main.appIcon ?? .init(named: "onboarding-icon")!
}
// Welcome Title
static func setUpTitle() -> NSMutableAttributedString {
let welcomeText: NSMutableAttributedString = .init(string: "Welcome to \n",
attributes: [.foregroundColor: UIColor.label]),
appNameText: NSMutableAttributedString = .init(string: Bundle.main.displayName ?? "Insignia",
attributes: [.foregroundColor: UIColor.init(named: "camou")!])
welcomeText.append(appNameText)
return welcomeText
}
// Core Features
static func setUpFeatures() -> Array<UIOnboardingFeature> {
return .init([
.init(icon: .init(named: "feature-1")!,
title: "Search until found",
description: "Over a hundred insignia of the Swiss Armed Forces – each redesigned from the ground up."),
.init(icon: .init(named: "feature-2")!,
title: "Enlist prepared",
description: "Practice with the app and pass the rank test on the first run."),
.init(icon: .init(named: "feature-3")!,
title: "#teamarmee",
description: "Add name tags of your comrades or cadre. Insignia automatically keeps every name tag you create in iCloud.")
])
}
// Notice Text
static func setUpNotice() -> UIOnboardingTextViewConfiguration {
return .init(icon: .init(named: "onboarding-notice-icon")!,
text: "Developed and designed for members of the Swiss Armed Forces.",
linkTitle: "Learn more...",
link: "https://www.lukmanascic.ch/portfolio/insignia",
tint: .init(named: "camou"))
}
// Continuation Title
static func setUpButton() -> UIOnboardingButtonConfiguration {
return .init(title: "Continue",
backgroundColor: .init(named: "camou")!)
}
}
import UIOnboarding
extension UIOnboardingViewConfiguration {
// UIOnboardingViewController init
static func setUp() -> UIOnboardingViewConfiguration {
return .init(appIcon: UIOnboardingHelper.setUpIcon(),
welcomeTitle: UIOnboardingHelper.setUpTitle(),
features: UIOnboardingHelper.setUpFeatures(),
textViewConfiguration: UIOnboardingHelper.setUpNotice(),
buttonConfiguration: UIOnboardingHelper.setUpButton())
}
}
You may present the onboarding screen only once (on first app launch) with the help of a User Defaults
flag. Note that an unspecified UserDefaults bool(forKey:)
key is set to false
by default.
if !UserDefaults.standard.bool(forKey: "hasCompletedOnboarding") {
showOnboarding()
}
Toggle onboarding completion in the provided delegate method.
func didFinishOnboarding(onboardingViewController: OnboardingViewController) {
onboardingViewController.modalTransitionStyle = .crossDissolve
onboardingViewController.dismiss(animated: true) {
UserDefaults.standard.set(true, forKey: "hasCompletedOnboarding")
}
}
isReduceMotionEnabled
in UIKittraitCollectionDidChange(_:)
in UIKitviewWillTransition(to:with:)
in UIKitUIViewControllerRepresentable
in SwiftUImakeCoordinator()
in SwiftUIUserDefaults
in FoundationUIOnboarding is MIT licensed.
The Insignia app icon and Insignia feature cell assets are copyright Lukman Aščić. All rights reserved. None of these materials or parts of it may be reproduced or distributed by any means without prior written permission of the copyright owner.
link |
Stars: 220 |
Last commit: 4 days ago |
Version 1.1.3 addresses a crucial performance issue.
This has been fixed with improved conditionals within interface environment changes.
• Fix infinite loop caused by updateUI()
on viewDidLayoutSubviews()
I'd like to thank Felix Lisczyk, @FelixLisczyk, for his contribution.
Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics