Advertisement
Guest User

Untitled

a guest
Oct 10th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. // Отслеживание открытия клавиатуры
  2. NotificationCenter.default.addObserver(self,
  3. selector: #selector(),
  4. name: UIResponder.keyboardWillShowNotification,
  5. object: nil)
  6.  
  7. // Отслеивание скрытие клавиатуры
  8. NotificationCenter.default.addObserver(self,
  9. selector: #selector(),
  10. name: UIResponder.keyboardWillHideNotification,
  11. object: nil)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement