You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 10, 2022. It is now read-only.
Implement the two methods in the `KeyboardNotificationDelegate`:
58
+
59
+
```swift
60
+
public func keyboardWillAppear(info: KeyboardHelper.KeyboardAppearanceInfo)
61
+
public func keyboardWillDisappear(info: KeyboardHelper.KeyboardAppearanceInfo)
62
+
```
63
+
64
+
Both methods take as argument a `KeyboardAppearanceInfo` object, which is basically a wrapper over the `userInfo` dictionary of the `UIKeyboardWillShowNotification` and `UIKeyboardWillHideNotification` notifications.
65
+
66
+
One example of implementation for the two delegate methods is:
0 commit comments