initial
This commit is contained in:
22
Pods/SwiftEntryKit/Source/Utils/UIView+Responder.swift
generated
Normal file
22
Pods/SwiftEntryKit/Source/Utils/UIView+Responder.swift
generated
Normal file
@@ -0,0 +1,22 @@
|
||||
//
|
||||
// UIView+Responder.swift
|
||||
// SwiftEntryKit
|
||||
//
|
||||
// Created by Daniel Huri on 5/17/18.
|
||||
//
|
||||
|
||||
import UIKit
|
||||
|
||||
extension UIView {
|
||||
var containsFirstResponder: Bool {
|
||||
var contains = false
|
||||
for subview in subviews.reversed() where !contains {
|
||||
if subview.isFirstResponder {
|
||||
contains = true
|
||||
} else {
|
||||
contains = subview.containsFirstResponder
|
||||
}
|
||||
}
|
||||
return contains
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user