Skip to content

Instantly share code, notes, and snippets.

@mlcollard
Last active February 27, 2018 20:58
Show Gist options
  • Save mlcollard/bf26b3c21dd4a3d793982916f37108eb to your computer and use it in GitHub Desktop.
Save mlcollard/bf26b3c21dd4a3d793982916f37108eb to your computer and use it in GitHub Desktop.
iOS: Setup notification for keyboard disappearing
// shifts the view up for space for the keyboard
NotificationCenter.default.addObserver(forName: NSNotification.Name.UIKeyboardWillHide, object: nil, queue: nil) {
notification in
print("\(notification.description)")
// move back to original position
self.view.frame.origin.y = 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment