20
Return 키를 누를 때 키보드를 숨기는 방법은 무엇입니까?
UITextfied텍스트 키보드를 클릭 하는 동안 사용 하고 있지만 return키를 누를 때 키보드가 사라지지 않습니다. 다음 코드를 사용했습니다. func textFieldShouldReturn(textField: UITextField!) -> Bool // called when 'return' key pressed. return NO to ignore. { return true; } resignfirstresponder 메소드가 작동하지 않습니다.
214
ios
swift
uitextfield