Skip to the content.

DLSwipeToPopController

Reusable iOS’s behavior to pop ViewController base on SwipeRightToPopController:

Requirements

Installing

There are three ways to install DLSwipeToPopController

1. CocoaPods

Just add to your project’s Podfile:

pod 'DLSwipeToPopController', '~> 1.0'

2. Carthage

Add following to Cartfile:

github "lengocduy/DLSwipeToPopController" ~> 1.0

3. Swift Package Manager

Create a Package.swift file:

// swift-tools-version:5.0

import PackageDescription

let package = Package(
        name: "TestSwipeToPopController",

        dependencies: [
            .package(url: "https://github.com/lengocduy/DLSwipeToPopController.git", from: "1.0.0"),
        ],

        targets: [
            .target(
                    name: "TestSwipeToPopController",
                    dependencies: ["DLSwipeToPopController"])
        ]
)

Architecture

Architecture

License

DLSwipeToPopController is available under the MIT license. See the LICENSE file for more info.