We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af93672 commit b14abc2Copy full SHA for b14abc2
Sources/KeyboardLayoutGuide/KeyboardLayoutGuide.swift
@@ -47,7 +47,7 @@ extension UIView {
47
open class KeyboardLayoutGuide: UILayoutGuide {
48
public var usesSafeArea = true {
49
didSet {
50
- updateButtomAnchor()
+ updateBottomAnchor()
51
}
52
53
@@ -85,10 +85,10 @@ open class KeyboardLayoutGuide: UILayoutGuide {
85
rightAnchor.constraint(equalTo: view.rightAnchor),
86
]
87
)
88
89
90
91
- func updateButtomAnchor() {
+ func updateBottomAnchor() {
92
if let bottomConstraint = bottomConstraint {
93
bottomConstraint.isActive = false
94
0 commit comments