An open API service indexing awesome lists of open source software.

https://github.com/noppefoxwolf/swipepopinteraction


https://github.com/noppefoxwolf/swipepopinteraction

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# SwipePopInteraction

```swift
import UIKit
import SwipePopInteraction

final class NavigationController: UINavigationController {
override func viewDidLoad() {
super.viewDidLoad()
let interaction = SwipePopInteraction(delegate: self)
view.addInteraction(interaction)
}
}

extension NavigationController: SwipePopInteractionDelegate {
func navigationController(for interaction: SwipePopInteraction) -> UINavigationController {
self
}
}
```