func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool {
if text == "\n" {
tempDescription = txteditdescription.text
txteditdescription.resignFirstResponder()
return false
}
return true
}
나는 새로운 해요 작동하지 않음 -> "tempDescription"내가 키보드 리턴 키에 문자열 변수에 저장 편집 된 텍스트를합니다.IOS : 텍스트 뷰에서 편집하는 동안, 키보드 리턴 키는 IOS의 developement에 내 문자열 변수에
내 텍스트 뷰 -> "txteditdescription" 위의 방법을 통해 내 시뮬레이터 키보드가 숨기지 않습니다. 그래서 내가해야 할 일이 무엇입니까? 감사합니다
pls는이 링크를 방문 위임 방법 shouldChangeTextInRange를 구현 : http://stackoverflow.com/questions/26600359/dismiss-keyboard-with-a-uitextview을 – Aakash
아래 내 대답을 게시 @ 하딕 – handiansom