[iOS] NotificationCenter로 키보드 처리하기
키보드가 올라가고 내려갈때 같이 움직이는 뷰를 처리하는 방법입니다. NotificationCenter 등록된 옵저버에 정보를 담은 신호를 보내는 방식 1. NotificationCenter에 옵저버를 추가해줍니다. (show, hide 2개) NotificationCenter.default.addObserver(self, selector: #selector(adjustInputView), name: UIResponder.keyboardWillShowNotification, object: nil) NotificationCenter.default.addObserver(self, selector: #selector(adjustInputView), name: UIResponder.keyboardWillHideN..
iOS
2021. 4. 9. 20:46
공지사항