키보드가 빠르게 나타날 때 텍스트 필드 이동
iOS 프로그래밍에 Swift를 사용하고 있으며이 코드를 사용하여를 이동 UITextField하지만 작동하지 않습니다. 함수를 keyboardWillShow올바르게 호출 했지만 텍스트 필드가 이동하지 않습니다. 자동 레이아웃을 사용하고 있습니다. override func viewDidLoad() { super.viewDidLoad() NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector("keyboardWillShow:"), name:UIKeyboardWillShowNotification, object: nil); NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector("keyboardWillHide:"), name:UIKeyboardWillHideNotification, object: nil); } deinit { NSNotificationCenter.defaultCenter().removeObserver(self); } func keyboardWillShow(notification: NSNotification) { if …