Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bocato/7f0ed109e215ff1a8acb43210a7e1974 to your computer and use it in GitHub Desktop.
Save bocato/7f0ed109e215ff1a8acb43210a7e1974 to your computer and use it in GitHub Desktop.
observeKeyboardWillShowNotification(scrollView) { [weak self] keyboardSize in
guard let keyboardHeight = keyboardSize?.height else { return }
self?.someViewYouWantToMoveBottomConstraint?.constant = -keyboardHeight
}
observeKeyboardWillHideNotification(scrollView) { [weak self] _ in
self?.someViewYouWantToMoveBottomConstraint?.constant = .zero
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment