Swiftpack.co - ivanvorobei/SPPageController as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by ivanvorobei.
ivanvorobei/SPPageController 1.3.3
Mimicrate to UIPageViewController. Has native system and scroll view paging. Support scroll to page and layout margins from container.
⭐️ 57
🕓 2 years ago
iOS
.package(url: "https://github.com/ivanvorobei/SPPageController.git", from: "1.3.3")

SPPageController

Mimicrate to native UIPageViewController. Each page is new controller, it can be even navigation controller. You can add any class of controllers like child. Support parent layout margins, paging and scroll by index.

You can scroll to any page programatically. If you need pages for onboarding, you can disable scroll by gester and disable swipe to dismiss.

Navigate

Installation

Ready for use on iOS 12+.

Swift Package Manager

The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler. It’s integrated with the Swift build system to automate the process of downloading, compiling, and linking dependencies.

Once you have your Swift package set up, adding as a dependency is as easy as adding it to the dependencies value of your Package.swift.

dependencies: [
    .package(url: "https://github.com/ivanvorobei/SPPageController", .upToNextMajor(from: "1.3.0"))
]

CocoaPods:

CocoaPods is a dependency manager. For usage and installation instructions, visit their website. To integrate using CocoaPods, specify it in your Podfile:

pod 'SPPageController'

Manually

If you prefer not to use any of dependency managers, you can integrate manually. Put Sources/SPPageController folder in your Xcode project. Make sure to enable Copy items if needed and Create groups.

Usage

SPPageController is container controller. Now available 2 system of paging - .scroll and .page. First using UICollectionView like basic view, its good work with content offset but not perfect when device rotated. Second using native UIPageViewController. You shoud choose which better for you.

Pass child controllers which using like pages and simple present page controller as you need:

// Here your controllers
let controllers: [UIViewController] = []
let pageController = SPPageController(childControllers: controllers, system: .page)
present(pageController, animated: true, completion: nil)

You can manage layout margins of container. Apple still has bug with it, but my way support it correctly:

pageController.view.layoutMargins = .init(horizontal: 50, vertical: 0)

// Don't forget enable preserve layout margins for childs:
// childController.view.preservesSuperviewLayoutMargins = true

Now for all childs left and right margins will be +50pt.

Scroll

If you want scroll only programatically, disable scroll between pages by gester:

pageController.allowScroll = false

For scroll by index call this function:

pageController.safeScrollTo(index: 3, animated: true)

Dismiss

If need disable dismiss by gester (related for modal controllers), set flag to false:

pageController.allowDismissWithGester = false

Russian Community

Я веду телеграм-канал, там публикую новости и туториалы.
С проблемой помогут в чате.

Видео-туториалы выклыдываю на YouTube:

Tutorials on YouTube

GitHub

link
Stars: 57
Last commit: 2 years ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

Added vertical paging.
2 years ago

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics