- August 12, 2025
- Mins Read
Pages is the easiest way of setting up a UIPageViewController
. It comes with some convenience methods like, disabling swipe, going to a specific page and navigating backwards and forwards. And best of all, you don’t have to make your own custom UIViewController
to keep an index, Pages handles that for you. It just works.
let viewController1 = UIViewController()
viewController1.title = “Controller A”
let viewController2 = UIViewController()
viewController2.title = “Controller B”
let pages = PagesController([viewController1, viewController2])
Pages is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod ‘Pages’
Pages is also available through Carthage. To install just write into your Cartfile:
github “hyperoslo/Pages”
Recognize your user's voice elegantly without having to figure out authorization and audio engines. SwiftSpeech Examples Features Installation Getting Started ...
Example To run the example project, clone the repo, and run pod install from the Example directory first. Requirements iOS 14.0 Installation ...
SlidingRuler is a Swift package containing a SwiftUI control that acts like an linear infinite slider or a finite, more precise ...
SkeletonUI aims to bring an elegant, declarative syntax to skeleton loading animations. Get rid of loading screens or spinners and ...