mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
94915b0496
This reverts commit dcef7f47ff
.
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
|
|
}
|
|
}
|