mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
16 lines
292 B
Swift
16 lines
292 B
Swift
|
//
|
||
|
// UIResponder+Extensions.swift
|
||
|
// SwiftUI_Pull_to_Refresh
|
||
|
//
|
||
|
// Created by Geri Borbás on 21/09/2021.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
import UIKit
|
||
|
|
||
|
extension UIResponder {
|
||
|
var parentViewController: UIViewController? {
|
||
|
next as? UIViewController ?? next?.parentViewController
|
||
|
}
|
||
|
}
|