적용한 Keyboard show, hide 감지 하는 기능이다. 나중에 상태 감지 후 bool 만 받아서 어떤 내용으로 감지할 때 쓰기 좋을 것 같고처음 보는 코드들이 있어서 정리해본다. import Foundationimport Combineimport UIKitextension Publishers { static var keyboardWillChange: AnyPublisher { let willShow = NotificationCenter.default.publisher(for: UIResponder.keyboardWillShowNotification) .map { _ in true } let willHide = Notification..